summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-05-24 06:34:46 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-05-24 06:34:46 +0900
commitfc3a323a21ae31ce7d15e44f0f81b9c899c690a9 (patch)
tree1d08b9d9db17651572a4d8761126109d2ffadc77 /src
parent2.16.7 (diff)
downloadmisskey-fc3a323a21ae31ce7d15e44f0f81b9c899c690a9.tar.gz
misskey-fc3a323a21ae31ce7d15e44f0f81b9c899c690a9.tar.bz2
misskey-fc3a323a21ae31ce7d15e44f0f81b9c899c690a9.zip
Fix bug
Diffstat (limited to 'src')
-rw-r--r--src/client/app/desktop/views/components/window.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/window.vue b/src/client/app/desktop/views/components/window.vue
index 7ee1da12ba..ac06ac8e57 100644
--- a/src/client/app/desktop/views/components/window.vue
+++ b/src/client/app/desktop/views/components/window.vue
@@ -95,7 +95,7 @@ export default Vue.extend({
},
created() {
- if (this.$store.state.device.autoPopout && this.popoutUrl) {
+ if ((this as any).os.store.state.device.autoPopout && this.popoutUrl) {
this.popout();
this.preventMount = true;
} else {