diff --git a/src/components/MTableSummaryRow/index.js b/src/components/MTableSummaryRow/index.js index 0912d1bb..46aa829b 100644 --- a/src/components/MTableSummaryRow/index.js +++ b/src/components/MTableSummaryRow/index.js @@ -89,7 +89,7 @@ export function MTableSummaryRow({ let value = ''; let style = getStyle({ columnDef: column, scrollWidth: 0 }); - if (typeof summaryColumn === 'object') { + if (typeof summaryColumn === 'object' && summaryColumn !== null) { value = summaryColumn.value; style = summaryColumn.style; } else {