From be2f47a8dee3b302868d18e5b4e264d4e0d15a66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Weller?= Date: Thu, 16 May 2019 09:24:45 +0200 Subject: [PATCH] fix copy --- components/Card.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Card.vue b/components/Card.vue index 095777a..de6671c 100644 --- a/components/Card.vue +++ b/components/Card.vue @@ -24,7 +24,7 @@ export default { let reference = this.$props.title.replace(/ /g, '').toLowerCase() await this.$copyText(`https://webgems.io${currentPath}/#${reference}`) - window.location = `https://webgems.io${currentPath}#${reference}` + window.location = `https://webgems.io${currentPath}/#${reference}` // this.$router.push(`${currentPath}#${reference}`) } catch (e) { console.error(e);