You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2020/09/16 06:35:07 UTC

[incubator-superset] 11/28: fix: embedded chart height (#10551)

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 <er...@airbnb.com>
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>
 );