File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to `dash` will be documented in this file.
3
3
This project adheres to [Semantic Versioning](https://semver.org/).
4
4
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
+
5
12
## [2.8.0] - 2023-01-24
6
13
7
14
### Added
Original file line number Diff line number Diff line change 120
120
page_container = html .Div (
121
121
[
122
122
dcc .Location (id = _ID_LOCATION ),
123
- html .Div (id = _ID_CONTENT ),
123
+ html .Div (id = _ID_CONTENT , disable_n_clicks = True ),
124
124
dcc .Store (id = _ID_STORE ),
125
- html .Div (id = _ID_DUMMY ),
125
+ html .Div (id = _ID_DUMMY , disable_n_clicks = True ),
126
126
]
127
127
)
128
128
except AttributeError :
Original file line number Diff line number Diff line change 1
- __version__ = "2.8.0 "
1
+ __version__ = "2.8.1 "
You can’t perform that action at this time.
0 commit comments