Skip to content

Commit 8ec90c1

Browse files
fix: UTC-644: Column dropdown rows on Data Manager page are not fully clickable (#9578)
1 parent 1043316 commit 8ec90c1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

web/libs/datamanager/src/components/Common/FieldsButton.jsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,13 @@ FieldsButton.Checkbox = observer(({ column, children, disabled, enterpriseBadge
146146
return (
147147
<div className="w-full flex items-center justify-between gap-tight">
148148
<div className="flex-1 flex items-center min-w-0 overflow-hidden">
149-
<Checkbox size="small" checked={!column.is_hidden} onChange={column.toggleVisibility} disabled={shouldDisable}>
149+
<Checkbox
150+
size="small"
151+
checked={!column.is_hidden}
152+
onChange={column.toggleVisibility}
153+
disabled={shouldDisable}
154+
className="w-full"
155+
>
150156
{children}
151157
</Checkbox>
152158
</div>

0 commit comments

Comments
 (0)