Skip to content

Commit

Permalink
fix(app-aco): support undefined table cell renderer (#3794)
Browse files Browse the repository at this point in the history
  • Loading branch information
leopuleo committed Jan 5, 2024
1 parent dd98c38 commit 4d19588
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class ColumnMapper {
enableHiding: column.hideable,
enableResizing: column.resizable,
enableSorting: column.sortable,
cell: (row: T) => cellRenderer(row, column.cell)
cell: column.cell ? (row: T) => cellRenderer(row, column.cell) : undefined
};
}
}

0 comments on commit 4d19588

Please sign in to comment.