diff --git a/apps/dispatch/app/dispatch/_components/map/_components/MissionMarkerTabs.tsx b/apps/dispatch/app/dispatch/_components/map/_components/MissionMarkerTabs.tsx index a63f2705..ed5fcd90 100644 --- a/apps/dispatch/app/dispatch/_components/map/_components/MissionMarkerTabs.tsx +++ b/apps/dispatch/app/dispatch/_components/map/_components/MissionMarkerTabs.tsx @@ -61,9 +61,36 @@ const Einsatzdetails = ({ mission }: { mission: Mission }) => { const { setMissionFormValues, setOpen } = usePannelStore((state) => state); return (
-

- Einsatzdetails -

+
+

+ Einsatzdetails +

+ {mission.state !== "draft" && ( +
+ +
+ )} +
-
-
- + {mission.state === "draft" && ( +
+
+
+ - - {mission.state === "draft" && ( - - )} -
+ + +
+
+ )}
); };