Skip to content

Commit

Permalink
Merge pull request #823 from jetstreamapp/bug/820
Browse files Browse the repository at this point in the history
Fix datatable renderer for boolean fields
  • Loading branch information
paustint authored Apr 6, 2024
2 parents fc1fc99 + 8427919 commit 40f3b00
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libs/ui/src/lib/data-table/data-table-utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ export function updateColumnFromType(column: Mutable<ColumnWithFilter<any>>, fie
column.filters = ['TEXT', 'SET'];
switch (fieldType) {
case 'text':
column.renderCell = GenericRenderer;
break;
case 'number':
// TODO:
Expand Down

0 comments on commit 40f3b00

Please sign in to comment.