From 96ad7bd152cb3a7714f0ca1d632b0dc3fd8dd1f7 Mon Sep 17 00:00:00 2001 From: yaschalew Date: Thu, 18 Jun 2026 12:38:15 +0300 Subject: [PATCH] save --- .../src/components/fleet/FleetFormDialog.tsx | 41 +++++++++++++++---- 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/apps/edr-freight-web/backoffice/src/components/fleet/FleetFormDialog.tsx b/apps/edr-freight-web/backoffice/src/components/fleet/FleetFormDialog.tsx index 3fd798b08..0df6444c9 100644 --- a/apps/edr-freight-web/backoffice/src/components/fleet/FleetFormDialog.tsx +++ b/apps/edr-freight-web/backoffice/src/components/fleet/FleetFormDialog.tsx @@ -12,6 +12,7 @@ import { Textarea, TextInput, } from "@mantine/core"; +import { DateInput } from "@mantine/dates"; import { FLEET_SELECT_NONE, type FleetFormFieldDef } from "@/pages/fleet/config/resources"; import type { FleetRecord } from "@/services/fleet/fleet.service"; @@ -131,6 +132,7 @@ const FleetFormDialog = ({ setValues((current) => ({ @@ -139,6 +141,7 @@ const FleetFormDialog = ({ })) } error={error} + disabled={field.disabled} /> ); } @@ -148,15 +151,35 @@ const FleetFormDialog = ({