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 @@ -38,7 +38,7 @@ const TableSelection: FunctionComponent<TableSelectionProps> = (props) => {
38
38
{
39
39
field : 'id' ,
40
40
filter : true ,
41
- sortable : true ,
41
+ initialSort : 'asc' ,
42
42
tooltipField : 'id' ,
43
43
flex : 1 ,
44
44
} ,
@@ -81,6 +81,7 @@ const TableSelection: FunctionComponent<TableSelectionProps> = (props) => {
81
81
onSelectionChanged = { handleSelection }
82
82
onFilterChanged = { onFilterChanged }
83
83
onGridReady = { onGridReady }
84
+ accentedSort = { true }
84
85
/>
85
86
</ Grid >
86
87
</ Grid >
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ const ProfilesTable: FunctionComponent<ProfilesTableProps> = (props) => {
73
73
trimInput : true ,
74
74
} as TextFilterParams < UserProfile > ,
75
75
tooltipField : 'name' ,
76
+ initialSort : 'asc' ,
76
77
} ,
77
78
{
78
79
field : 'allLinksValid' ,
@@ -104,10 +105,7 @@ const ProfilesTable: FunctionComponent<ProfilesTableProps> = (props) => {
104
105
headerTooltip : intl . formatMessage ( {
105
106
id : 'profiles.table.validity.description' ,
106
107
} ) ,
107
- sortable : true ,
108
108
filter : true ,
109
- initialSortIndex : 1 ,
110
- initialSort : 'asc' ,
111
109
} ,
112
110
] ,
113
111
[ intl ]
You can’t perform that action at this time.
0 commit comments