リンクをコピーでパスしかコピーされない問題を修正 (#6785)
This commit is contained in:
parent
cf6596203b
commit
e2e262c8ce
@ -10,7 +10,7 @@ import { faExpandAlt, faColumns, faExternalLinkAlt, faLink, faWindowMaximize } f
|
|||||||
import * as os from '@/os';
|
import * as os from '@/os';
|
||||||
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
||||||
import { router } from '@/router';
|
import { router } from '@/router';
|
||||||
import { deckmode } from '@/config';
|
import { deckmode, url } from '@/config';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
inject: {
|
inject: {
|
||||||
@ -82,7 +82,7 @@ export default defineComponent({
|
|||||||
icon: faLink,
|
icon: faLink,
|
||||||
text: this.$t('copyLink'),
|
text: this.$t('copyLink'),
|
||||||
action: () => {
|
action: () => {
|
||||||
copyToClipboard(this.to);
|
copyToClipboard(`${url}${this.to}`);
|
||||||
}
|
}
|
||||||
}], e);
|
}], e);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user