bugfix: Dashboards with multiple spaces in the name could not be navigated properly (#408)
This commit is contained in:
parent
044613ae9a
commit
8258a758d2
|
|
@ -238,7 +238,7 @@ export function refreshDiagnostics () {
|
|||
}
|
||||
|
||||
function getSystemTitle (title) {
|
||||
return title.replace(' ', '')
|
||||
return title.replaceAll(' ', '')
|
||||
}
|
||||
|
||||
function marshalSingleDashboard (dashboard, nav) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue