Skip to content

Commit b13d9b8

Browse files
authored
Merge pull request #2892 from aGitForEveryone/dropdown-menu-max-height-fix
Dropdown menu max height fix
2 parents 3203b0f + 3f446f4 commit b13d9b8

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1010

1111
## Fixed
1212

13+
- [#2892](https://github.com/plotly/dash/pull/2860) Fix ensures dcc.Dropdown menu maxHeight option works with Datatable. Fixes [#2529](https://github.com/plotly/dash/issues/2529) [#2225](https://github.com/plotly/dash/issues/2225)
1314
- [#2896](https://github.com/plotly/dash/pull/2896) The tabIndex parameter of Div can accept number or string type. Fixes [#2891](https://github.com/plotly/dash/issues/2891)
1415

1516
## [2.17.1] - 2024-06-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.dash-dropdown .Select-menu-outer {
22
z-index: 1000;
3+
max-height: none;
34
}
45

5-
.dash-dropdown .Select-menu, .Select-menu-outer {
6+
.dash-dropdown .Select-menu {
67
max-height: none;
78
}

components/dash-core-components/tests/integration/dropdown/test_visibility.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ def test_ddvi001_fixed_table(dash_duo):
5050
def test_ddvi002_maxHeight(dash_duo):
5151
app = Dash(__name__)
5252
app.layout = Div(
53-
[Dropdown([str(i) for i in range(100)], "1", id="dropdown", maxHeight=800)]
53+
[
54+
DataTable(), # ensure datatable css does not override maxHeight #2529
55+
Dropdown([str(i) for i in range(100)], "1", id="dropdown", maxHeight=800),
56+
]
5457
)
5558

5659
dash_duo.start_server(app)

0 commit comments

Comments
 (0)