Explorar el Código

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

James Read hace 1 año
padre
commit
8258a758d2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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) {