diff --git a/superset-frontend/src/explore/components/ExploreChartPanel.jsx b/superset-frontend/src/explore/components/ExploreChartPanel.jsx index 5714db5d89..d881f66397 100644 --- a/superset-frontend/src/explore/components/ExploreChartPanel.jsx +++ b/superset-frontend/src/explore/components/ExploreChartPanel.jsx @@ -183,9 +183,11 @@ const ExploreChartPanel = props => { }; const renderChart = useCallback(() => { - const { chart } = props; + const { chart, vizType } = props; const newHeight = - calcSectionHeight(splitSizes[0]) - CHART_PANEL_PADDING_VERTICAL; + vizType === 'filter_box' + ? calcSectionHeight(100) - CHART_PANEL_PADDING_VERTICAL + : calcSectionHeight(splitSizes[0]) - CHART_PANEL_PADDING_VERTICAL; const chartWidth = chartPanelWidth - CHART_PANEL_PADDING_HORIZ; return ( chartWidth > 0 && (