Fix copyURL feature

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2023-08-17 14:27:52 +02:00
parent 5f5e9bd765
commit c0f365167f
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ export default {
this.$store.dispatch(actions.CLICK_BOOKMARK, this.bookmark)
},
onCopyUrl() {
navigator.clipboard.writeText(this.bookmark.tar)
navigator.clipboard.writeText(this.bookmark.target)
this.$store.commit(mutations.SET_NOTIFICATION, this.t('bookmarks', 'Link copied to clipboard'))
},
async fetchBackgroundImage() {