You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2022/08/22 13:17:57 UTC

[superset] 08/36: fix(database-modal): 'CTAS & CVAS SCHEMA' getting cut off (#21004)

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

diegopucci pushed a commit to branch chore/drill-to-detail-modal-tests
in repository https://gitbox.apache.org/repos/asf/superset.git

commit f5383308b7a9d725805b3a9ffeec96a508aebf50
Author: Stephen Liu <75...@qq.com>
AuthorDate: Tue Aug 16 12:24:38 2022 +0800

    fix(database-modal): 'CTAS & CVAS SCHEMA' getting cut off (#21004)
---
 superset-frontend/src/views/CRUD/data/database/DatabaseModal/styles.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/views/CRUD/data/database/DatabaseModal/styles.ts b/superset-frontend/src/views/CRUD/data/database/DatabaseModal/styles.ts
index 015ba17bf6..b39d21e994 100644
--- a/superset-frontend/src/views/CRUD/data/database/DatabaseModal/styles.ts
+++ b/superset-frontend/src/views/CRUD/data/database/DatabaseModal/styles.ts
@@ -21,7 +21,7 @@ import { css, styled, SupersetTheme } from '@superset-ui/core';
 import { JsonEditor } from 'src/components/AsyncAceEditor';
 import Button from 'src/components/Button';
 
-const CTAS_CVAS_SCHEMA_FORM_HEIGHT = 102;
+const CTAS_CVAS_SCHEMA_FORM_HEIGHT = 108;
 const EXPOSE_IN_SQLLAB_FORM_HEIGHT = CTAS_CVAS_SCHEMA_FORM_HEIGHT + 153;
 const EXPOSE_ALL_FORM_HEIGHT = EXPOSE_IN_SQLLAB_FORM_HEIGHT + 102;