Set location.href instead of hash for the fallback view

This commit is contained in:
Johannes Zellner
2025-10-05 17:40:42 +02:00
parent 16c2316183
commit 7706be3e2f
+1 -1
View File
@@ -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;
}
}