Skip to content

Commit 761e028

Browse files
anaisbergSimonClo
authored andcommitted
✨ always show unsort icon
1 parent 0c83376 commit 761e028

File tree

1 file changed

+3
-3
lines changed
  • src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-blocks

1 file changed

+3
-3
lines changed

src/frontend/apps/impress/src/features/docs/doc-editor/components/custom-blocks/DatabaseBlock.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ export const DatabaseBlock = createReactBlockSpec(
4040

4141
// Column Definitions: Defines the columns to be displayed.
4242
const colDefs: ColDef[] = [
43-
{ field: 'make', unSortIcon: true, sort: 'desc' },
43+
{ field: 'make', sort: 'desc' },
4444
{
4545
field: 'model',
46-
unSortIcon: true,
4746
filter: true,
4847
},
49-
{ field: 'price', unSortIcon: true, filter: true },
48+
{ field: 'price', filter: true },
5049
{ field: 'electric' },
5150
];
5251

5352
const defaultColDef = {
5453
flex: 1,
5554
editable: true,
55+
unSortIcon: true,
5656
};
5757
return (
5858
<Box

0 commit comments

Comments
 (0)