Fixed: Editing provider/profile settings appearing to affect wrong item

This commit is contained in:
ta264 2020-02-03 21:45:48 +00:00 committed by Qstick
parent 843bc6aabc
commit b592b11b97
16 changed files with 53 additions and 53 deletions

View file

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