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

This commit is contained in:
James Read 2024-09-16 23:36:40 +01:00 committed by GitHub
parent 044613ae9a
commit 8258a758d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ export function refreshDiagnostics () {
}
function getSystemTitle (title) {
return title.replace(' ', '')
return title.replaceAll(' ', '')
}
function marshalSingleDashboard (dashboard, nav) {