From 7a5a541a4ed2ecd607b9e4545bcd192bcf381f17 Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 3 Nov 2020 10:06:19 +0900 Subject: 相対パスでコピーされるのを修正 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/pages/messaging/messaging-room.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/pages') diff --git a/src/client/pages/messaging/messaging-room.vue b/src/client/pages/messaging/messaging-room.vue index 4aca8bdabf..73c8e2a6df 100644 --- a/src/client/pages/messaging/messaging-room.vue +++ b/src/client/pages/messaging/messaging-room.vue @@ -311,20 +311,20 @@ const Component = defineComponent({ }, menu(ev) { - const url = this.groupId ? `/my/messaging/group/${this.groupId}` : `/my/messaging/${this.userAcct}`; + const path = this.groupId ? `/my/messaging/group/${this.groupId}` : `/my/messaging/${this.userAcct}`; os.modalMenu([this.inWindow ? undefined : { text: this.$t('openInWindow'), icon: faWindowMaximize, action: () => { - os.pageWindow(url); + os.pageWindow(path); this.$router.back(); }, }, this.inWindow ? undefined : { text: this.$t('popout'), icon: faExternalLinkAlt, action: () => { - popout(url); + popout(path); this.$router.back(); }, }], ev.currentTarget || ev.target); -- cgit v1.2.3-freya