From da5707d7e9ebd015d6ad46b011f302c87e838d26 Mon Sep 17 00:00:00 2001 From: Ivan Velev Date: Mon, 20 Sep 2021 12:15:15 -0700 Subject: [PATCH] vueui: access to full-id in app --- pywb/vueui/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywb/vueui/src/App.vue b/pywb/vueui/src/App.vue index 1e18ba27..106a3627 100644 --- a/pywb/vueui/src/App.vue +++ b/pywb/vueui/src/App.vue @@ -83,7 +83,7 @@ export default { // save current period (aka zoom) // use sessionStorage (not localStorage), as we want this to be a very temporary memory for current page tab/window and no longer; NOTE: it serves when navigating from an "*" query to a specific capture and subsequent reloads if (window.sessionStorage) { - window.sessionStorage.setItem('zoom__'+this.config.url, newPeriod.getFullId()); + window.sessionStorage.setItem('zoom__'+this.config.url, newPeriod.fullId); } this.currentPeriod = newPeriod; }