Add stricter loading check for cells

This commit is contained in:
jeffvli 2022-12-24 18:12:49 -08:00
parent ed12d59564
commit d011c29ce8
4 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ export const GenericCell = (
) => {
const displayedValue = valueFormatted || value;
if (!value) {
if (value === undefined) {
return (
<CellContainer position={position || 'left'}>
<Skeleton