Skip to content

Commit

Permalink
Merge 0b40d3f into 70dfedd
Browse files Browse the repository at this point in the history
  • Loading branch information
manny-m committed Sep 17, 2021
2 parents 70dfedd + 0b40d3f commit eaea55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataTable/filters/CheckboxFilter.jsx
Expand Up @@ -34,7 +34,7 @@ function CheckboxFilter({
key={headerBasedId + name}
checked={checkedBoxes.includes(value)}
onChange={() => { changeCheckbox(value); }}
label={<>{name} {number && <Badge variant="light">{number}</Badge>}</>}
label={<>{name} {number !== undefined && <Badge variant="light">{number}</Badge>}</>}
/>
))}
</Form.Group>
Expand Down

0 comments on commit eaea55a

Please sign in to comment.