diff --git a/dash/_callback.py b/dash/_callback.py index 0b63f17740..3785df7166 100644 --- a/dash/_callback.py +++ b/dash/_callback.py @@ -854,7 +854,7 @@ def register_clientside_callback( None, prevent_initial_call, no_output=no_output, - hidden=kwargs.get("hidden", False), + hidden=kwargs.get("hidden", None), ) # If JS source is explicitly given, create a namespace and function diff --git a/dash/dash.py b/dash/dash.py index 95df01e64c..03bdec5498 100644 --- a/dash/dash.py +++ b/dash/dash.py @@ -2690,6 +2690,7 @@ def update(pathname_, search_, **states): """, Output(_ID_DUMMY, "children"), Input(_ID_STORE, "data"), + hidden=True, ) def __call__(self, environ, start_response):