Fix minor error on upload detail page rendering

This commit is contained in:
Eli Ribble 2026-04-16 02:47:29 +00:00
parent aa5a35b15f
commit 171672ee33
No known key found for this signature in database

View file

@ -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",