Skip to content

Commit

Permalink
Fixed hasBulkActions prop type passed to DatagridRow
Browse files Browse the repository at this point in the history
  • Loading branch information
RoBYCoNTe committed Apr 3, 2021
1 parent f237d02 commit 59b86fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const DatagridBody: FC<DatagridBodyProps> = React.forwardRef(
[classes.clickableRow]: rowClick,
}),
expand,
hasBulkActions: hasBulkActions && selectedIds,
hasBulkActions: hasBulkActions && !!selectedIds,
hover,
id,
key: id,
Expand Down

0 comments on commit 59b86fc

Please sign in to comment.