This is an automated email from the ASF dual-hosted git repository. villebro pushed a commit to branch 0.37 in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit 3293ef4b6b1749db7af06e0bd82eac34a7eebd8c Author: Erik Ritter <[email protected]> AuthorDate: Fri Aug 7 13:53:18 2020 -0700 fix: embedded chart height (#10551) --- superset-frontend/src/explore/App.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/explore/App.jsx b/superset-frontend/src/explore/App.jsx index 0d3d55a..90b3494 100644 --- a/superset-frontend/src/explore/App.jsx +++ b/superset-frontend/src/explore/App.jsx @@ -33,10 +33,10 @@ setupPlugins(); const App = ({ store }) => ( <Provider store={store}> <ThemeProvider theme={supersetTheme}> - <div> + <> <ExploreViewContainer /> <ToastPresenter /> - </div> + </> </ThemeProvider> </Provider> );
