Skip to content

Commit

Permalink
Fix indeterminate checkbox color (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
laratran authored Dec 6, 2023
1 parent 7374436 commit 53ae949
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export const MRT_FilterCheckbox = <TData extends Record<string, any> = {}>({
className={clsx('mrt-filter-checkbox', classes.root)}
checked={value === 'true'}
indeterminate={value === undefined}
color={value === undefined ? 'default' : 'primary'}
size={density === 'xs' ? 'sm' : 'md'}
label={checkboxProps.title ?? filterLabel}
{...checkboxProps}
Expand Down

0 comments on commit 53ae949

Please sign in to comment.