From bd40c9f8175fb258d340aae36634ccb4b90c7532 Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Fri, 11 Jul 2025 21:10:26 -0700 Subject: [PATCH] =?UTF-8?q?Filter=20Verlegung=20aus=20Prim=C3=A4reins?= =?UTF-8?q?=C3=A4tzen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dispatch/_components/pannel/MissionForm.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/dispatch/app/(app)/dispatch/_components/pannel/MissionForm.tsx b/apps/dispatch/app/(app)/dispatch/_components/pannel/MissionForm.tsx index df0baa41..02c33695 100644 --- a/apps/dispatch/app/(app)/dispatch/_components/pannel/MissionForm.tsx +++ b/apps/dispatch/app/(app)/dispatch/_components/pannel/MissionForm.tsx @@ -307,11 +307,13 @@ export const MissionForm = () => { - {Object.keys(KEYWORD_CATEGORY).map((use) => ( - - ))} + {Object.keys(KEYWORD_CATEGORY) + .filter((k) => !k.startsWith("V_")) + .map((use) => ( + + ))} {form.formState.errors.missionKeywordCategory && (

Bitte wähle eine Kategorie aus.