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 6623750 commit 2f84022Copy full SHA for 2f84022
dash/_callback.py
@@ -337,7 +337,9 @@ def wrap_func(func):
337
def add_context(*args, **kwargs):
338
output_spec = kwargs.pop("outputs_list")
339
app_callback_manager = kwargs.pop("long_callback_manager", None)
340
- callback_ctx = kwargs.pop("callback_context", {})
+ callback_ctx = kwargs.pop(
341
+ "callback_context", AttributeDict({"updated_props": {}})
342
+ )
343
callback_manager = long and long.get("manager", app_callback_manager)
344
if not no_output:
345
_validate.validate_output_spec(insert_output, output_spec, Output)
0 commit comments