Skip to content
Snippets Groups Projects
Unverified Commit c1e7d56f authored by syuilo's avatar syuilo
Browse files

Fix bug

parent 61aef56f
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
</div>
</ui-container>
<ui-container :body-togglable="true" ref="tags">
<ui-container :body-togglable="true" :expanded="tag == null" ref="tags">
<template #header><fa :icon="faHashtag" fixed-width/>{{ $t('popular-tags') }}</template>
<div class="vxjfqztj">
......
......@@ -30,6 +30,10 @@ export default Vue.extend({
type: Boolean,
default: false
},
expanded: {
type: Boolean,
default: true
},
},
inject: {
inDeck: {
......@@ -38,7 +42,7 @@ export default Vue.extend({
},
data() {
return {
showBody: true
showBody: this.expanded
};
},
methods: {
......
......@@ -30,10 +30,14 @@ export default Vue.extend({
type: Boolean,
default: false
},
expanded: {
type: Boolean,
default: true
},
},
data() {
return {
showBody: true
showBody: this.expanded
};
},
methods: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment