diff --git a/stencil-workspace/src/components/modus-table/parts/cell/modus-table-cell-main/modus-table-cell-main.tsx b/stencil-workspace/src/components/modus-table/parts/cell/modus-table-cell-main/modus-table-cell-main.tsx index 403945f52..722d54ade 100644 --- a/stencil-workspace/src/components/modus-table/parts/cell/modus-table-cell-main/modus-table-cell-main.tsx +++ b/stencil-workspace/src/components/modus-table/parts/cell/modus-table-cell-main/modus-table-cell-main.tsx @@ -177,7 +177,7 @@ export class ModusTableCellMain { const { row, getValue } = this.cell; const cellValue = getValue(); - if (!cellValue) return null; + if (cellValue === null || cellValue === undefined) return null; const { cellLinkClick, wrapText } = this.context; const cellDataType = cellValue['_type'] ?? this.cell.column.columnDef[COLUMN_DEF_DATATYPE_KEY];