Fixed: (UI) Case-insensitive sorting for add indexer modal

This commit is contained in:
Bogdan
2023-06-14 10:03:02 +03:00
parent 83166fb0b5
commit 4561859c2b
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ const columns = [
isVisible: true isVisible: true
}, },
{ {
name: 'name', name: 'sortName',
label: translate('Name'), label: translate('Name'),
isSortable: true, isSortable: true,
isVisible: true isVisible: true

View File

@@ -41,7 +41,7 @@ export const defaultState = {
isFetching: false, isFetching: false,
isPopulated: false, isPopulated: false,
error: null, error: null,
sortKey: 'name', sortKey: 'sortName',
sortDirection: sortDirections.ASCENDING, sortDirection: sortDirections.ASCENDING,
items: [] items: []
} }