From 96c42264beac65154971a44458a975e046cf05b0 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 24 May 2018 06:34:46 +0900 Subject: [PATCH] Fix bug --- src/client/app/desktop/views/components/window.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/desktop/views/components/window.vue b/src/client/app/desktop/views/components/window.vue index 7ee1da12b..ac06ac8e5 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 {