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 22All notable changes to `dash` will be documented in this file.
33This 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
Original file line number Diff line number Diff line change 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 )
128128except 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