From 72762cb23ff6f1bf690592996599fd90810dcbc4 Mon Sep 17 00:00:00 2001 From: Guilherme de Freitas Date: Tue, 5 Aug 2025 09:25:17 +0100 Subject: [PATCH] Remove lid from grid box form, add c-clip direction --- src/mappings/forms/gridBox.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/mappings/forms/gridBox.ts b/src/mappings/forms/gridBox.ts index 9a63255..765243b 100644 --- a/src/mappings/forms/gridBox.ts +++ b/src/mappings/forms/gridBox.ts @@ -27,12 +27,12 @@ export const gridBoxForm = [ watch: true, }, { - id: "lid", - label: "Lid", + id: "c-clip", + label: "C-Clip Direction", type: "dropdown", values: [ - { label: "Screw", value: "Screw" }, - { label: "Pin", value: "Pin" }, + { label: "Anti-Clockwise", value: "Anti-Clockwise" }, + { label: "Clockwise", value: "Clockwise" }, ], }, { @@ -45,7 +45,6 @@ export const gridBoxForm = [ { id: "comments", label: "Comments", - hint: "General comments, such as direction c-clip is facing respective to notch", type: "textarea", }, ] as DynamicFormEntry[];