From cdc3ab612daaa5bba9b27db94fc4a5a1b27abc50 Mon Sep 17 00:00:00 2001 From: Trevor Vannoy Date: Tue, 17 Oct 2023 09:09:22 -0600 Subject: [PATCH] make presentation href include https:// Not including https:// made the href relative, which ended up in some unfortunate recursion :) --- components/presentation-url.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/presentation-url.vue b/components/presentation-url.vue index 3c1e6cf..280dac0 100644 --- a/components/presentation-url.vue +++ b/components/presentation-url.vue @@ -3,7 +3,8 @@ export default { data: () => { return { - href: window.location.host + window.location.pathname + href: window.location.origin + window.location.pathname, + url: window.location.host + window.location.pathname }; }, } @@ -13,5 +14,5 @@ export default {