Skip to content

Commit

Permalink
fix: 🐛 Fix the (blank) display bug on quick filter checkboxes. (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
idrisbo authored Aug 11, 2023
1 parent 587aeea commit a1dd12e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/filter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-filter",
"version": "2.0.4",
"version": "2.0.5",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const FilterItemCheckbox = ({
isMonospace,
}: FilterItemCheckboxProps): JSX.Element => {
return (
<StyledFilterItemWrap title={typeof filterValue === 'string' ? filterValue : '(Blank)'} key={filterValue.value}>
<StyledFilterItemWrap title={filterValue.value ?? '(Blank)'} key={filterValue.value}>
<Checkbox disabled={isFetching} onChange={handleFilterItemClick} size={12} checked={!isChecked} />
<StyledFilterLabelWrapper
onClick={handleFilterItemLabelClick}
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-fusion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@equinor/workspace-fusion",
"version": "4.0.0",
"version": "4.0.1",
"type": "module",
"sideEffects": false,
"license": "MIT",
Expand Down

0 comments on commit a1dd12e

Please sign in to comment.