mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-06 00:36:58 +00:00
Fixed: Tag details list series in alphabetical order
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
@@ -17,6 +17,26 @@ function createMatchingAuthorSelector() {
|
||||
);
|
||||
}
|
||||
|
||||
function createMatchingArtistSelector() {
|
||||
return createSelector(
|
||||
createUnorderedMatchingArtistSelector(),
|
||||
(artists) => {
|
||||
return artists.sort((artistA, artistB) => {
|
||||
const sortNameA = artistA.sortName;
|
||||
const sortNameB = artistB.sortName;
|
||||
|
||||
if (sortNameA > sortNameB) {
|
||||
return 1;
|
||||
} else if (sortNameA < sortNameB) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
});
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
function createMatchingDelayProfilesSelector() {
|
||||
return createSelector(
|
||||
(state, { delayProfileIds }) => delayProfileIds,
|
||||
|
||||
Reference in New Issue
Block a user