Skip to content

Commit 2205b2f

Browse files
authored
Merge pull request #2404 from plotly/master-2.8.1
Master 2.8.1
2 parents c5ccf38 + c65434b commit 2205b2f

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
6+
## [2.8.1] - 2023-01-30
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+
512
## [2.8.0] - 2023-01-24
613

714
### Added

dash/dash.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@
120120
page_container = html.Div(
121121
[
122122
dcc.Location(id=_ID_LOCATION),
123-
html.Div(id=_ID_CONTENT),
123+
html.Div(id=_ID_CONTENT, disable_n_clicks=True),
124124
dcc.Store(id=_ID_STORE),
125-
html.Div(id=_ID_DUMMY),
125+
html.Div(id=_ID_DUMMY, disable_n_clicks=True),
126126
]
127127
)
128128
except AttributeError:

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.8.0"
1+
__version__ = "2.8.1"

0 commit comments

Comments
 (0)