This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 3.1 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 3c74a9b866daba89920677b34b0df1e395516674 Author: Kamil Gabryjelski <[email protected]> AuthorDate: Fri Feb 9 18:16:39 2024 +0100 fix: Filters sidebar stretching dashboard height (#27069) (cherry picked from commit 3f91bdb40d76539e953dd9205481459f6b2ae082) --- .../src/dashboard/components/DashboardBuilder/DashboardWrapper.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardWrapper.tsx b/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardWrapper.tsx index f39c7ed630..5bb193de1b 100644 --- a/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardWrapper.tsx +++ b/superset-frontend/src/dashboard/components/DashboardBuilder/DashboardWrapper.tsx @@ -25,6 +25,7 @@ import classNames from 'classnames'; const StyledDiv = styled.div` ${({ theme }) => css` + position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr;
