diff --git a/frontend/src/Store/Actions/interactiveImportActions.js b/frontend/src/Store/Actions/interactiveImportActions.js index da87e72c2..6f5043555 100644 --- a/frontend/src/Store/Actions/interactiveImportActions.js +++ b/frontend/src/Store/Actions/interactiveImportActions.js @@ -129,12 +129,14 @@ export const actionHandlers = handleThunks({ ...currentIds.map((id) => updateItem({ section, id, - isReprocessing: false + isReprocessing: false, + updateOnly: true })), ...payload.ids.map((id) => updateItem({ section, id, - isReprocessing: true + isReprocessing: true, + updateOnly: true })) ])); @@ -166,7 +168,8 @@ export const actionHandlers = handleThunks({ data.map((item) => updateItem({ section, ...item, - isReprocessing: false + isReprocessing: false, + updateOnly: true })) )); }); @@ -180,7 +183,8 @@ export const actionHandlers = handleThunks({ payload.ids.map((id) => updateItem({ section, id, - isReprocessing: false + isReprocessing: false, + updateOnly: true })) )); });