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/ui/default.vue | |
| parent | 12.52.0 (diff) | |
| download | misskey-7a5a541a4ed2ecd607b9e4545bcd192bcf381f17.tar.gz misskey-7a5a541a4ed2ecd607b9e4545bcd192bcf381f17.tar.bz2 misskey-7a5a541a4ed2ecd607b9e4545bcd192bcf381f17.zip | |
相対パスでコピーされるのを修正
Diffstat (limited to 'src/client/ui/default.vue')
| -rw-r--r-- | src/client/ui/default.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/ui/default.vue b/src/client/ui/default.vue index 7127d8f12c..626e5242c5 100644 --- a/src/client/ui/default.vue +++ b/src/client/ui/default.vue @@ -216,21 +216,21 @@ export default defineComponent({ }, onContextmenu(e) { - const url = this.$route.path; + const path = this.$route.path; os.contextMenu([{ type: 'label', - text: url, + text: path, }, { icon: faColumns, text: this.$t('openInSideView'), action: () => { - this.$refs.side.navigate(url); + this.$refs.side.navigate(path); } }, { icon: faWindowMaximize, text: this.$t('openInWindow'), action: () => { - os.pageWindow(url); + os.pageWindow(path); } }], e); }, |