mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed: (UI) Case-insensitive sorting for add indexer modal
This commit is contained in:
parent
83166fb0b5
commit
4561859c2b
2 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ const columns = [
|
|||
isVisible: true
|
||||
},
|
||||
{
|
||||
name: 'name',
|
||||
name: 'sortName',
|
||||
label: translate('Name'),
|
||||
isSortable: true,
|
||||
isVisible: true
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ export const defaultState = {
|
|||
isFetching: false,
|
||||
isPopulated: false,
|
||||
error: null,
|
||||
sortKey: 'name',
|
||||
sortKey: 'sortName',
|
||||
sortDirection: sortDirections.ASCENDING,
|
||||
items: []
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue