mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user