Skip to content

Commit

Permalink
(fix): -- is showing in query console instead of value 0 (#8257)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahsank3t committed Feb 28, 2022
1 parent d999aec commit e6330bb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -519,7 +519,7 @@ export default function CustomizedTables({
className={isCellClickable ? classes.isCellClickable : (isSticky ? classes.isSticky : '')}
onClick={() => {cellClickCallback && cellClickCallback(cell);}}
>
{makeCell(cell || '--', index)}
{makeCell(cell ?? '--', index)}
</StyledTableCell>
);
})}
Expand Down

0 comments on commit e6330bb

Please sign in to comment.