From c05d24d2491e82d26a8c4e1f2c07eb419f975f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20M?= Date: Wed, 6 Sep 2023 10:37:02 +0200 Subject: [PATCH] fix: table view dropdown should have a minimum width (#1467) --- .../ui/table/options/components/TableViewsDropdownButton.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/modules/ui/table/options/components/TableViewsDropdownButton.tsx b/front/src/modules/ui/table/options/components/TableViewsDropdownButton.tsx index 8b1f0aa78..07db3d615 100644 --- a/front/src/modules/ui/table/options/components/TableViewsDropdownButton.tsx +++ b/front/src/modules/ui/table/options/components/TableViewsDropdownButton.tsx @@ -60,6 +60,7 @@ const StyledViewIcon = styled(IconList)` const StyledViewName = styled.span` display: inline-block; max-width: 200px; + min-width: 118px; @media (max-width: 375px) { max-width: 90px; }