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 d339423 commit ae473a6Copy full SHA for ae473a6
dash/dash-renderer/src/actions/callbacks.ts
@@ -229,7 +229,7 @@ const getVals = (input: any) =>
229
const zipIfArray = (a: any, b: any) => {
230
if (Array.isArray(a)) {
231
// For client-side callbacks with multiple Outputs, only return a single dash_clientside.no_update
232
- if (b?.description === 'Return to prevent updating an Output.') {
+ if (b === (window as any).dash_clientside.no_update) {
233
return zip(a, [b]);
234
}
235
return zip(a, b);
0 commit comments