You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2021/05/05 06:54:52 UTC

[superset] branch fix-explore-flex-layout updated: fix: explore flex layout is sometimes too short

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch fix-explore-flex-layout
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/fix-explore-flex-layout by this push:
     new d282558  fix: explore flex layout is sometimes too short
d282558 is described below

commit d28255865dd248847dc98a332007eec76077188a
Author: Evan Rusackas <ev...@preset.io>
AuthorDate: Tue May 4 23:53:08 2021 -0700

    fix: explore flex layout is sometimes too short
---
 superset-frontend/src/explore/components/ExploreViewContainer.jsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/explore/components/ExploreViewContainer.jsx b/superset-frontend/src/explore/components/ExploreViewContainer.jsx
index d907a95..b1dee2e 100644
--- a/superset-frontend/src/explore/components/ExploreViewContainer.jsx
+++ b/superset-frontend/src/explore/components/ExploreViewContainer.jsx
@@ -85,6 +85,7 @@ const Styles = styled.div`
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
+  flex-basis: 100vh;
   align-items: stretch;
   border-top: 1px solid ${({ theme }) => theme.colors.grayscale.light2};
   .explore-column {