We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d25329 commit 4b67283Copy full SHA for 4b67283
dash/dash-renderer/src/actions/callbacks.ts
@@ -453,11 +453,11 @@ function handleServerside(
453
if (job) addArg('job', job);
454
455
// clear inputs as background callback doesnt need inputs, just verify for context
456
- const tmpBody = JSON.parse(new_body);
457
- for (let i = 0; i < tmp_body.inputs.length; i++) {
+ const tmpBody = JSON.parse(newBody);
+ for (let i = 0; i < tmpBody.inputs.length; i++) {
458
tmpBody.inputs[i]['value'] = null;
459
}
460
- for (let i = 0; i < (tmp_body?.state || []).length; i++) {
+ for (let i = 0; i < (tmpBody?.state || []).length; i++) {
461
tmpBody.state[i]['value'] = null;
462
463
newBody = JSON.stringify(tmpBody);
0 commit comments