mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix: wrong route name in breadcrumb
This commit is contained in:
parent
d2cf9522b1
commit
ee6f93505f
1 changed files with 5 additions and 1 deletions
|
@ -91,7 +91,11 @@ export const useInfos = createGlobalState(() => {
|
|||
`Route ${name}, declared in breadcrumd, cannot be found in routes.`,
|
||||
)
|
||||
}
|
||||
return { name: to.name, params: to.params, args: route.meta.args || {} }
|
||||
return {
|
||||
name: route.name,
|
||||
params: to.params,
|
||||
args: route.meta.args || {},
|
||||
}
|
||||
})
|
||||
|
||||
updateHtmlTitle()
|
||||
|
|
Loading…
Add table
Reference in a new issue