mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-06 08:46:34 +00:00
Fixed: Interactive import SelectArtist ordering
This commit is contained in:
@@ -12,7 +12,17 @@ function createMapStateToProps() {
|
||||
createAllArtistSelector(),
|
||||
(items) => {
|
||||
return {
|
||||
items
|
||||
items: items.sort((a, b) => {
|
||||
if (a.sortName < b.sortName) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (a.sortName > b.sortName) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
})
|
||||
};
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user