リンクをコピーでパスしかコピーされない問題を修正 (#6785)

This commit is contained in:
sobadon 2020-10-30 18:22:14 +09:00 committed by GitHub
parent cf6596203b
commit e2e262c8ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
},