diff --git a/src/components/ArticleFooter.vue b/src/components/ArticleFooter.vue
index 5a0d46d82c5617398f52d74907a2daf667eb1001..2dc99f59fd892c576460f3dc9cc0075cdb68b985 100644
--- a/src/components/ArticleFooter.vue
+++ b/src/components/ArticleFooter.vue
@@ -105,7 +105,9 @@ export default {
       return citation
     },
     copy_link() {
-      navigator.clipboard.writeText(this.create_link());
+      let link = this.create_link()
+      console.log(link)
+      navigator.clipboard.writeText(link);
       this.what_copied = "Lenka"
       this.copy_popup = true
     },