diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-11-03 10:06:19 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-11-03 10:06:19 +0900 |
| commit | 7a5a541a4ed2ecd607b9e4545bcd192bcf381f17 (patch) | |
| tree | b186afa14867656555bc85d3c8ed19a327153bf6 /src/client/pages | |
| parent | 12.52.0 (diff) | |
| download | misskey-7a5a541a4ed2ecd607b9e4545bcd192bcf381f17.tar.gz misskey-7a5a541a4ed2ecd607b9e4545bcd192bcf381f17.tar.bz2 misskey-7a5a541a4ed2ecd607b9e4545bcd192bcf381f17.zip | |
相対パスでコピーされるのを修正
Diffstat (limited to 'src/client/pages')
| -rw-r--r-- | src/client/pages/messaging/messaging-room.vue | 6 |
1 files changed, 3 insertions, 3 deletions
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); |