Fixed: Manual Import adding empty rows after selecting movie

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/2/head
Qstick 4 years ago
parent 7ddb8ecc37
commit 87bf6b5977

@ -129,12 +129,14 @@ export const actionHandlers = handleThunks({
...currentIds.map((id) => updateItem({ ...currentIds.map((id) => updateItem({
section, section,
id, id,
isReprocessing: false isReprocessing: false,
updateOnly: true
})), })),
...payload.ids.map((id) => updateItem({ ...payload.ids.map((id) => updateItem({
section, section,
id, id,
isReprocessing: true isReprocessing: true,
updateOnly: true
})) }))
])); ]));
@ -166,7 +168,8 @@ export const actionHandlers = handleThunks({
data.map((item) => updateItem({ data.map((item) => updateItem({
section, section,
...item, ...item,
isReprocessing: false isReprocessing: false,
updateOnly: true
})) }))
)); ));
}); });
@ -180,7 +183,8 @@ export const actionHandlers = handleThunks({
payload.ids.map((id) => updateItem({ payload.ids.map((id) => updateItem({
section, section,
id, id,
isReprocessing: false isReprocessing: false,
updateOnly: true
})) }))
)); ));
}); });

Loading…
Cancel
Save