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

This commit is contained in:
ta264
2020-02-03 21:45:48 +00:00
parent 2e6094beb6
commit b54d556e63
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;
}