diff --git a/frontend/src/InteractiveImport/Artist/SelectArtistModalContentConnector.js b/frontend/src/InteractiveImport/Artist/SelectArtistModalContentConnector.js index 78c5631f0..04e87f3c7 100644 --- a/frontend/src/InteractiveImport/Artist/SelectArtistModalContentConnector.js +++ b/frontend/src/InteractiveImport/Artist/SelectArtistModalContentConnector.js @@ -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; + }) }; } );