We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd5afea commit ad37ca3Copy full SHA for ad37ca3
projects/ngx-grid-core/src/lib/ui/cell/cell-types/file-size.cell-type.ts
@@ -29,7 +29,7 @@ export class FileSizeCellType extends BaseCellType {
29
{
30
this._displayNode.innerText = this._formatBytes(value)
31
}
32
- if (!value) this._displayNode.style.display = 'none'
+ if (value == null) this._displayNode.style.display = 'none'
33
else this._displayNode.style.display = ''
34
35
0 commit comments