We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8fabef4 + 0ce85e3 commit f8bb7d8Copy full SHA for f8bb7d8
CHANGELOG.md
@@ -2,6 +2,13 @@
2
All notable changes to `dash` will be documented in this file.
3
This project adheres to [Semantic Versioning](https://semver.org/).
4
5
+
6
+## Unreleased
7
8
+## Fixed
9
10
+- [#2400](https://github.com/plotly/dash/pull/2400) Added `disable_n_clicks=True` to the `html.Div` components in `page_container`.
11
12
## [2.8.0] - 2023-01-24
13
14
### Added
dash/dash.py
@@ -120,9 +120,9 @@
120
page_container = html.Div(
121
[
122
dcc.Location(id=_ID_LOCATION),
123
- html.Div(id=_ID_CONTENT),
+ html.Div(id=_ID_CONTENT, disable_n_clicks=True),
124
dcc.Store(id=_ID_STORE),
125
- html.Div(id=_ID_DUMMY),
+ html.Div(id=_ID_DUMMY, disable_n_clicks=True),
126
]
127
)
128
except AttributeError:
0 commit comments