Fixed: Interactive import SelectArtist ordering

pull/6/head
Qstick 6 years ago
parent 029a0e4e20
commit 3ae079a541

@ -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;
})
};
}
);

Loading…
Cancel
Save