You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2022/08/09 03:52:58 UTC

[superset] branch master updated: fix(sqllab): result set min-height (#21016)

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

yjc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 58245dd7f7 fix(sqllab): result set min-height (#21016)
58245dd7f7 is described below

commit 58245dd7f7343da6b8a1e64be654f3d77991ec4d
Author: Jesse Yang <je...@airbnb.com>
AuthorDate: Mon Aug 8 20:52:52 2022 -0700

    fix(sqllab): result set min-height (#21016)
---
 superset-frontend/src/SqlLab/components/ResultSet/index.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/SqlLab/components/ResultSet/index.tsx b/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
index 28d2e1fe78..27913d7fc4 100644
--- a/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
+++ b/superset-frontend/src/SqlLab/components/ResultSet/index.tsx
@@ -80,7 +80,7 @@ interface ResultSetState {
 
 const ResultlessStyles = styled.div`
   position: relative;
-  minheight: 100px;
+  min-height: 100px;
   [role='alert'] {
     margin-top: ${({ theme }) => theme.gridUnit * 2}px;
   }