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
This commit is contained in:
Otto
2026-03-24 05:08:56 +00:00
parent 9762f4cde7
commit 69cdcd1bba

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"