Compare commits

...

1 Commits

Author SHA1 Message Date
Otto
69cdcd1bba fix(frontend/builder): make Select widget full-width in list[enum] fields
The Select atom's wrapper div lacked w-full, causing select dropdowns
inside array items (list[enum] fields) to not fill the available width.

Resolves SECRT-2165
2026-03-24 05:08:56 +00:00

View File

@@ -119,7 +119,7 @@ export function Select({
);
const selectWithError = (
<div className={cn("relative mb-6", wrapperClassName)}>
<div className={cn("relative mb-6 w-full", wrapperClassName)}>
{select}
<Text
variant="small-medium"