Fixed: Interactive import SelectArtist ordering

This commit is contained in:
Qstick 2018-10-19 23:11:42 -04:00
commit 3ae079a541

View file

@ -12,7 +12,17 @@ function createMapStateToProps() {
createAllArtistSelector(), createAllArtistSelector(),
(items) => { (items) => {
return { return {
items items: items.sort((a, b) => {
if (a.sortName < b.sortName) {
return -1;
}
if (a.sortName > b.sortName) {
return 1;
}
return 0;
})
}; };
} }
); );