From 7706be3e2f2e8633e73b3d0dac316c20f5e0fc60 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sun, 5 Oct 2025 17:40:42 +0200 Subject: [PATCH] Set location.href instead of hash for the fallback view --- dashboard/src/Index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/Index.vue b/dashboard/src/Index.vue index b2171f386..be73fa193 100644 --- a/dashboard/src/Index.vue +++ b/dashboard/src/Index.vue @@ -196,7 +196,7 @@ function onHashChange() { } else if (v === VIEWS.VOLUMES && profile.value.isAtLeastAdmin) { view.value = VIEWS.VOLUMES; } else { - window.location.hash = '/' + VIEWS.APPS; + window.location.href = VIEWS.APPS; } }