From e788989b19af409a6e02f97e805cdcee49a0d43b Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 8 Jul 2025 09:23:59 +0200 Subject: [PATCH] fix(frontend): add URL overview to more models (#9977) --- src/frontend/lib/enums/ModelInformation.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/lib/enums/ModelInformation.tsx b/src/frontend/lib/enums/ModelInformation.tsx index 110bf803f2..2db30b4b59 100644 --- a/src/frontend/lib/enums/ModelInformation.tsx +++ b/src/frontend/lib/enums/ModelInformation.tsx @@ -36,6 +36,7 @@ export const ModelInformationDict: ModelDict = { partparametertemplate: { label: () => t`Part Parameter Template`, label_multiple: () => t`Part Parameter Templates`, + url_overview: '/settings/admin/part-parameters', url_detail: '/partparametertemplate/:pk/', api_endpoint: ApiEndpoints.part_parameter_template_list, icon: 'test_templates' @@ -265,6 +266,7 @@ export const ModelInformationDict: ModelDict = { selectionlist: { label: () => t`Selection List`, label_multiple: () => t`Selection Lists`, + url_overview: '/settings/admin/part-parameters', api_endpoint: ApiEndpoints.selectionlist_list, icon: 'list_details' },