From af39287814ed6ea495c65e6b24c54163f7d46461 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 1 Dec 2025 06:15:34 +0000 Subject: [PATCH] Fix supplier part import wizard --- src/frontend/src/components/wizards/ImportPartWizard.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/components/wizards/ImportPartWizard.tsx b/src/frontend/src/components/wizards/ImportPartWizard.tsx index 9b271614a7..68c3fa6aae 100644 --- a/src/frontend/src/components/wizards/ImportPartWizard.tsx +++ b/src/frontend/src/components/wizards/ImportPartWizard.tsx @@ -677,7 +677,8 @@ export default function ImportPartWizard({ {} as Record ); const createParameters = useParameters.map((p) => ({ - part: importResult!.part_id, + model_type: 'part', + model_id: importResult!.part_id, template: p.parameter_template, data: p.value }));