Skip to content

Commit c2e84ba

Browse files
authored
Merge pull request #3581 from l0uden/hidden_clientside_callback_fixes
hidden clientside callbacks fixes
2 parents 787ac80 + 65bd106 commit c2e84ba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dash/_callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ def register_clientside_callback(
854854
None,
855855
prevent_initial_call,
856856
no_output=no_output,
857-
hidden=kwargs.get("hidden", False),
857+
hidden=kwargs.get("hidden", None),
858858
)
859859

860860
# If JS source is explicitly given, create a namespace and function

dash/dash.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2690,6 +2690,7 @@ def update(pathname_, search_, **states):
26902690
""",
26912691
Output(_ID_DUMMY, "children"),
26922692
Input(_ID_STORE, "data"),
2693+
hidden=True,
26932694
)
26942695

26952696
def __call__(self, environ, start_response):

0 commit comments

Comments
 (0)