Fix double navigation bug in breadcrumbs
This commit is contained in:
@@ -66,7 +66,7 @@ let current_page: Tab = $state(null)
|
||||
const load_page = (pathname: string, history: boolean): boolean => {
|
||||
console.debug("Navigating to page", pathname, "log history:", history)
|
||||
|
||||
const path_decoded = decodeURI(pathname)
|
||||
const path_decoded = decodeURIComponent(pathname)
|
||||
let page_by_path: Tab = null
|
||||
let page_by_prefix: Tab = null
|
||||
for (const page of pages) {
|
||||
|
||||
Reference in New Issue
Block a user