Skip to content

Commit ad37ca3

Browse files
author
Blueshift Staff
committed
Synced from the Blueshift Repository
1 parent dd5afea commit ad37ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/ngx-grid-core/src/lib/ui/cell/cell-types/file-size.cell-type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class FileSizeCellType extends BaseCellType {
2929
{
3030
this._displayNode.innerText = this._formatBytes(value)
3131
}
32-
if (!value) this._displayNode.style.display = 'none'
32+
if (value == null) this._displayNode.style.display = 'none'
3333
else this._displayNode.style.display = ''
3434
}
3535

0 commit comments

Comments
 (0)