Quellcode durchsuchen

bugfix: Dashboards with multiple spaces in the name could not be navigated properly (#408)

James Read vor 1 Jahr
Ursprung
Commit
8258a758d2
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      webui.dev/js/marshaller.js

+ 1 - 1
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) {