@economic/taco 2.58.2-EC-64961.10 → 2.58.2-EC-64961.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/taco.js CHANGED
@@ -36670,7 +36670,12 @@ function DisplayCell(props) {
36670
36670
  const columnMeta = cell.column.columnDef.meta;
36671
36671
  const attributes = getCellAttributes(cell, index2, isHighlighted);
36672
36672
  const isTruncated = !!columnMeta.enableTruncate;
36673
- const content = typeof cell.column.columnDef.cell === "function" ? cell.column.columnDef.cell(cell.getContext()) : cell.getValue();
36673
+ let content;
36674
+ if (isInternalColumn(cell.column.id)) {
36675
+ content = flexRender(cell.column.columnDef.cell, cell.getContext());
36676
+ } else {
36677
+ content = typeof cell.column.columnDef.cell === "function" ? cell.column.columnDef.cell(cell.getContext()) : cell.getValue();
36678
+ }
36674
36679
  return /* @__PURE__ */ React__default.createElement(MemoedDisplayCell, { ...cellAttributes, ...attributes, cellRef, isTruncated }, content);
36675
36680
  }
36676
36681
  const MemoedDisplayCell = React__default.memo(function MemoedDisplayCell2(props) {