File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
dash/dash-renderer/src/actions Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ async function handleClientside(
244
244
} ) ;
245
245
}
246
246
247
- const { inputs, output , outputs, state} = payload ;
247
+ const { inputs, outputs, state} = payload ;
248
248
const requestTime = Date . now ( ) ;
249
249
250
250
const inputDict = inputsToDict ( inputs ) ;
@@ -272,11 +272,7 @@ async function handleClientside(
272
272
dc . callback_context . inputs = inputDict ;
273
273
dc . callback_context . states_list = state ;
274
274
dc . callback_context . states = stateDict ;
275
- dc . callback_context . outputs_list =
276
- Object . prototype . toString . call ( outputs ) === '[object Object]'
277
- ? [ outputs ]
278
- : outputs ;
279
- dc . callback_context . outputs = output ;
275
+ dc . callback_context . outputs_list = outputs ;
280
276
281
277
let returnValue = dc [ namespace ] [ function_name ] ( ...args ) ;
282
278
You can’t perform that action at this time.
0 commit comments