summaryrefslogtreecommitdiff
path: root/src/client/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-20 10:15:06 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-20 10:15:06 +0900
commitc1e7d56ff878d68629db43de2a8f697371b606a2 (patch)
tree16a9e48f278940c43723091ea4b5d6c32bb5f62e /src/client/app/mobile
parent:art: (diff)
downloadmisskey-c1e7d56ff878d68629db43de2a8f697371b606a2.tar.gz
misskey-c1e7d56ff878d68629db43de2a8f697371b606a2.tar.bz2
misskey-c1e7d56ff878d68629db43de2a8f697371b606a2.zip
Fix bug
Diffstat (limited to 'src/client/app/mobile')
-rw-r--r--src/client/app/mobile/views/components/ui-container.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/ui-container.vue b/src/client/app/mobile/views/components/ui-container.vue
index 3e3633cefe..90b29d0c23 100644
--- a/src/client/app/mobile/views/components/ui-container.vue
+++ b/src/client/app/mobile/views/components/ui-container.vue
@@ -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: {