From 171672ee339abc7c14e1bf0fbbe8ab877120ea47 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 16 Apr 2026 02:47:29 +0000 Subject: [PATCH] Fix minor error on upload detail page rendering --- ts/router.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/router.ts b/ts/router.ts index 88912eb3..6424ecbe 100644 --- a/ts/router.ts +++ b/ts/router.ts @@ -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",