mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Queue Items don't show up
This commit is contained in:
@@ -17,7 +17,7 @@ const blacklistedProperties = [
|
||||
];
|
||||
|
||||
function createItemMap(data) {
|
||||
return data.reduce((acc, d, index, array) => {
|
||||
return data.reduce((acc, d, index) => {
|
||||
acc[d.id] = index;
|
||||
return acc;
|
||||
}, {});
|
||||
@@ -49,7 +49,7 @@ export default function createHandleActions(handlers, defaultState, section) {
|
||||
|
||||
if (_.isArray(payload.data)) {
|
||||
newState.items = payload.data;
|
||||
newState.itemMap = createItemMap(newState.items);
|
||||
newState.itemMap = createItemMap(payload.data);
|
||||
} else {
|
||||
newState.item = payload.data;
|
||||
}
|
||||
|
Reference in New Issue
Block a user