mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
Fixed: (UI) Regain jump to character
functionality for search releases
This commit is contained in:
@@ -9,12 +9,12 @@ function createUnoptimizedSelector(uiSection) {
|
||||
const items = indexers.items.map((s) => {
|
||||
const {
|
||||
id,
|
||||
name
|
||||
sortName
|
||||
} = s;
|
||||
|
||||
return {
|
||||
id,
|
||||
sortName: name
|
||||
sortName
|
||||
};
|
||||
});
|
||||
|
||||
|
@@ -9,13 +9,13 @@ function createUnoptimizedSelector(uiSection) {
|
||||
const items = releases.items.map((s) => {
|
||||
const {
|
||||
guid,
|
||||
title,
|
||||
sortTitle,
|
||||
indexerId
|
||||
} = s;
|
||||
|
||||
return {
|
||||
guid,
|
||||
sortTitle: title,
|
||||
sortTitle,
|
||||
indexerId
|
||||
};
|
||||
});
|
||||
@@ -40,7 +40,7 @@ const createMovieEqualSelector = createSelectorCreator(
|
||||
function createReleaseClientSideCollectionItemsSelector(uiSection) {
|
||||
return createMovieEqualSelector(
|
||||
createUnoptimizedSelector(uiSection),
|
||||
(movies) => movies
|
||||
(releases) => releases
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user