From ce7b3200c600b41bac49d4e01e4468a7a68fa260 Mon Sep 17 00:00:00 2001 From: Ivan Gabriele Date: Wed, 4 Sep 2024 11:11:05 +0200 Subject: [PATCH] Decrease zone select width in manual pno form species --- .../fields/FormikFishingCatchesMultiSelect/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/features/PriorNotification/components/ManualPriorNotificationForm/fields/FormikFishingCatchesMultiSelect/index.tsx b/frontend/src/features/PriorNotification/components/ManualPriorNotificationForm/fields/FormikFishingCatchesMultiSelect/index.tsx index 1ec6eb0d4d..cb07afef20 100644 --- a/frontend/src/features/PriorNotification/components/ManualPriorNotificationForm/fields/FormikFishingCatchesMultiSelect/index.tsx +++ b/frontend/src/features/PriorNotification/components/ManualPriorNotificationForm/fields/FormikFishingCatchesMultiSelect/index.tsx @@ -127,7 +127,7 @@ export function FormikFishingCatchesMultiSelect({ isReadOnly }: FormikFishingCat label={`Zone de capture (${fishingCatch.specyCode})`} name={`fishingCatches[${index}].faoArea`} options={faoAreasAsOptions ?? []} - placeholder="Choisir une zone" + placeholder="Zone" readOnly={isReadOnly} searchable virtualized @@ -179,6 +179,6 @@ const Row = styled.div` const SpecyTag = styled(SingleTag)` margin-top: 2px; - max-width: 220px; - min-width: 220px; + max-width: 260px; + min-width: 260px; `