From c0f365167fcdd9e9bcde50f6d91bd788bb9c2d17 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 17 Aug 2023 14:27:52 +0200 Subject: [PATCH] Fix copyURL feature Signed-off-by: Marcel Klehr --- src/components/Bookmark.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Bookmark.vue b/src/components/Bookmark.vue index 09d1a20c..afd149a8 100644 --- a/src/components/Bookmark.vue +++ b/src/components/Bookmark.vue @@ -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() {