Skip to content

Commit 0b25ed6

Browse files
committed
dbeaver/pro#9588 remove top margin
1 parent 0f79ef2 commit 0b25ed6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webapp/common-react/@dbeaver/react-data-grid/src/formatters/BooleanFormatter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function BooleanFormatter({ value, className, onClick, onKeyDown, focusab
3131
onKeyDown={handleKeyDown}
3232
onClick={onClick}
3333
>
34-
{value === null ? <NullFormatter /> : <CheckboxIndicator size="small" checked={value} />}
34+
{value === null ? <NullFormatter /> : <CheckboxIndicator className="tw:mt-0!" size="small" checked={value} />}
3535
</Focusable>
3636
);
3737
}

0 commit comments

Comments
 (0)