From 8258a758d2136090ffcfc9ae111fc000537509f4 Mon Sep 17 00:00:00 2001 From: James Read Date: Mon, 16 Sep 2024 23:36:40 +0100 Subject: [PATCH] bugfix: Dashboards with multiple spaces in the name could not be navigated properly (#408) --- webui.dev/js/marshaller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.dev/js/marshaller.js b/webui.dev/js/marshaller.js index b695650..e8a0673 100644 --- a/webui.dev/js/marshaller.js +++ b/webui.dev/js/marshaller.js @@ -238,7 +238,7 @@ export function refreshDiagnostics () { } function getSystemTitle (title) { - return title.replace(' ', '') + return title.replaceAll(' ', '') } function marshalSingleDashboard (dashboard, nav) {