Fix minor error on upload detail page rendering
This commit is contained in:
parent
aa5a35b15f
commit
171672ee33
1 changed files with 3 additions and 1 deletions
|
|
@ -88,7 +88,9 @@ const routes: RouteRecordRaw[] = [
|
|||
meta: { requiresAuth: true, showSidebar: true },
|
||||
name: "Upload Detail",
|
||||
path: "/_/configuration/upload/:id",
|
||||
props: true,
|
||||
props: (route) => ({
|
||||
id: parseInt(route.params.id as string, 10),
|
||||
}),
|
||||
},
|
||||
{
|
||||
path: "/_/configuration/upload/pool",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue