From 15b4d5b46258466a95a53ca85ab86b582ad93dc9 Mon Sep 17 00:00:00 2001 From: Florian Maurer Date: Tue, 30 Dec 2025 16:07:45 +0100 Subject: [PATCH] fix: the full link to the graph The link did not work when opening as a new tab or sharing the URL --- lib/gui.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui.ts b/lib/gui.ts index 3e588594..b2609b51 100644 --- a/lib/gui.ts +++ b/lib/gui.ts @@ -88,7 +88,7 @@ export const Gui = function (language: ReturnType) { } else { data = { view: "map" }; } - router.deepUrl(data); + router.fullUrl(data); }; buttons.appendChild(buttonToggle);