Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dash/_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions dash/dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Loading