From f6a134a62ddef59598adf262023f89e54a08ba57 Mon Sep 17 00:00:00 2001 From: Alexey Snigir Date: Wed, 21 Jan 2026 14:37:34 +0100 Subject: [PATCH] hidden clientside callbacks compatibility with hide_all_callbacks --- dash/_callback.py | 2 +- dash/dash.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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):