From e2e262c8ce448c292220166deb4d53c6c6cc4706 Mon Sep 17 00:00:00 2001 From: sobadon Date: Fri, 30 Oct 2020 18:22:14 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=AA=E3=83=B3=E3=82=AF=E3=82=92=E3=82=B3?= =?UTF-8?q?=E3=83=94=E3=83=BC=E3=81=A7=E3=83=91=E3=82=B9=E3=81=97=E3=81=8B?= =?UTF-8?q?=E3=82=B3=E3=83=94=E3=83=BC=E3=81=95=E3=82=8C=E3=81=AA=E3=81=84?= =?UTF-8?q?=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3=20(#6785)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/components/ui/a.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/components/ui/a.vue b/src/client/components/ui/a.vue index e11fecbe7..98f921254 100644 --- a/src/client/components/ui/a.vue +++ b/src/client/components/ui/a.vue @@ -10,7 +10,7 @@ import { faExpandAlt, faColumns, faExternalLinkAlt, faLink, faWindowMaximize } f import * as os from '@/os'; import copyToClipboard from '@/scripts/copy-to-clipboard'; import { router } from '@/router'; -import { deckmode } from '@/config'; +import { deckmode, url } from '@/config'; export default defineComponent({ inject: { @@ -82,7 +82,7 @@ export default defineComponent({ icon: faLink, text: this.$t('copyLink'), action: () => { - copyToClipboard(this.to); + copyToClipboard(`${url}${this.to}`); } }], e); },