mirror of
https://github.com/Readarr/Readarr
synced 2025-12-14 20:36:18 +01:00
Fixed: Add payload to createSaveHandler
This commit is contained in:
parent
713f643b1d
commit
18fd7d452b
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ function createSaveHandler(section, url) {
|
|||
dispatch(set({ section, isSaving: true }));
|
||||
|
||||
const state = getSectionState(getState(), section, true);
|
||||
const saveData = Object.assign({}, state.item, state.pendingChanges);
|
||||
const saveData = Object.assign({}, state.item, state.pendingChanges, payload);
|
||||
|
||||
const promise = $.ajax({
|
||||
url,
|
||||
|
|
|
|||
Loading…
Reference in a new issue