Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/filepond.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4947,7 +4947,7 @@ const actions = (dispatch, query, state) => ({
ABORT_ITEM_PROCESSING: getItemByQueryFromState(state, item => {
// test if is already processed
if (item.serverId) {
dispatch('REVERT_ITEM_PROCESSING', { id: item.id });
dispatch('REVERT_ITEM_PROCESSING', { query: item.id });
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/filepond.esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/filepond.js
Original file line number Diff line number Diff line change
Expand Up @@ -7365,7 +7365,7 @@
ABORT_ITEM_PROCESSING: getItemByQueryFromState(state, function(item) {
// test if is already processed
if (item.serverId) {
dispatch('REVERT_ITEM_PROCESSING', { id: item.id });
dispatch('REVERT_ITEM_PROCESSING', { query: item.id });
return;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/filepond.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/app/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ export const actions = (dispatch, query, state) => ({
ABORT_ITEM_PROCESSING: getItemByQueryFromState(state, item => {
// test if is already processed
if (item.serverId) {
dispatch('REVERT_ITEM_PROCESSING', { id: item.id });
dispatch('REVERT_ITEM_PROCESSING', { query: item.id });
return;
}

Expand Down