File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export const GridTable: GridTableWithRef = forwardRef(function AgGridToolbar<TDa
105
105
rowData = { data }
106
106
alwaysShowVerticalScroll = { true }
107
107
onGridReady = { loadDataAndSave }
108
+ accentedSort = { true }
108
109
context = { useMemo (
109
110
( ) =>
110
111
( {
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const TableSelection: FunctionComponent<TableSelectionProps> = (props) => {
44
44
{
45
45
field : 'id' ,
46
46
filter : true ,
47
- sortable : true ,
47
+ initialSort : 'asc' ,
48
48
tooltipField : 'id' ,
49
49
flex : 1 ,
50
50
} ,
@@ -86,6 +86,7 @@ const TableSelection: FunctionComponent<TableSelectionProps> = (props) => {
86
86
getRowId = { getRowId }
87
87
onSelectionChanged = { handleEquipmentSelectionChanged }
88
88
onGridReady = { onGridReady }
89
+ accentedSort = { true }
89
90
/>
90
91
</ Grid >
91
92
</ Grid >
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ const ProfilesTable: FunctionComponent<ProfilesTableProps> = (props) => {
84
84
trimInput : true ,
85
85
} as TextFilterParams < UserProfile > ,
86
86
tooltipField : 'name' ,
87
+ initialSort : 'asc' ,
87
88
} ,
88
89
{
89
90
field : 'allLinksValid' ,
@@ -115,10 +116,7 @@ const ProfilesTable: FunctionComponent<ProfilesTableProps> = (props) => {
115
116
headerTooltip : intl . formatMessage ( {
116
117
id : 'profiles.table.validity.description' ,
117
118
} ) ,
118
- sortable : true ,
119
119
filter : true ,
120
- initialSortIndex : 1 ,
121
- initialSort : 'asc' ,
122
120
} ,
123
121
] ,
124
122
[ intl ]
You can’t perform that action at this time.
0 commit comments