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 2023/10/31 16:23:50 UTC

(superset) branch master updated: fix(SQL field in edit dataset modal): display full sql query (#25768)

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

rusackas 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 1eba7121aa fix(SQL field in edit dataset modal): display full sql query (#25768)
1eba7121aa is described below

commit 1eba7121aa1c40fdaa55d1a55024c55c63901b4c
Author: Ross Mabbett <92...@users.noreply.github.com>
AuthorDate: Tue Oct 31 13:23:44 2023 -0300

    fix(SQL field in edit dataset modal): display full sql query (#25768)
---
 superset-frontend/src/components/Datasource/DatasourceEditor.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/components/Datasource/DatasourceEditor.jsx b/superset-frontend/src/components/Datasource/DatasourceEditor.jsx
index 90defaf8dc..86b5c22777 100644
--- a/superset-frontend/src/components/Datasource/DatasourceEditor.jsx
+++ b/superset-frontend/src/components/Datasource/DatasourceEditor.jsx
@@ -1141,7 +1141,7 @@ class DatasourceEditor extends React.PureComponent {
                         language="sql"
                         offerEditInModal={false}
                         minLines={20}
-                        maxLines={20}
+                        maxLines={Infinity}
                         readOnly={!this.state.isEditMode}
                         resize="both"
                       />