From f0652176c3b6e1f950dc1e435709fa1a02325702 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Mon, 27 Nov 2023 17:10:26 -0300 Subject: [PATCH] fix(dropdownComponent): fix dropdown width issue when not using apiModal by adding w-full class to options container --- src/frontend/src/components/dropdownComponent/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/components/dropdownComponent/index.tsx b/src/frontend/src/components/dropdownComponent/index.tsx index abcbfb6d8..b5e3f534e 100644 --- a/src/frontend/src/components/dropdownComponent/index.tsx +++ b/src/frontend/src/components/dropdownComponent/index.tsx @@ -32,7 +32,7 @@ export default function Dropdown({ > {({ open }) => ( <> -
+
{options.map((option, id) => (