From fb168ed13e4a918d32e7358df8b5a6ef5da09546 Mon Sep 17 00:00:00 2001 From: sbgap Date: Mon, 11 May 2026 13:10:28 +0200 Subject: [PATCH] fix: remove # from hash in history page --- src/pages/History.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/History.vue b/src/pages/History.vue index 409feeab..75e09863 100644 --- a/src/pages/History.vue +++ b/src/pages/History.vue @@ -252,7 +252,7 @@ function setHash(val: string) { const hash = val.replace(/^#/, '') if (hash) { - const hashMap: {sd?: string; sb?: string; ct?: string; [key: string]: any} = utils.fromHash(val) + const hashMap: {sd?: string; sb?: string; ct?: string; [key: string]: any} = utils.fromHash(hash) if (typeof hashMap.ct === 'string') { if (hashMap.ct == 'user-defined') setFilter(hashMap) currentTab.value = hashMap.ct