diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-05-24 06:34:46 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-05-24 06:34:46 +0900 |
| commit | fc3a323a21ae31ce7d15e44f0f81b9c899c690a9 (patch) | |
| tree | 1d08b9d9db17651572a4d8761126109d2ffadc77 /src/client | |
| parent | 2.16.7 (diff) | |
| download | misskey-fc3a323a21ae31ce7d15e44f0f81b9c899c690a9.tar.gz misskey-fc3a323a21ae31ce7d15e44f0f81b9c899c690a9.tar.bz2 misskey-fc3a323a21ae31ce7d15e44f0f81b9c899c690a9.zip | |
Fix bug
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/desktop/views/components/window.vue | 2 |
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 { |