This is an automated email from the ASF dual-hosted git repository.
hugh pushed a commit to branch hugh/db-connection-ui-r2
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/hugh/db-connection-ui-r2 by
this push:
new b800fd1 fix order of additional params to always be at the bottom
b800fd1 is described below
commit b800fd1dc6d97b57043ac70a8a41a155834d7e9e
Author: hughhhh <[email protected]>
AuthorDate: Thu Jun 17 10:45:55 2021 -0400
fix order of additional params to always be at the bottom
---
.../views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/superset-frontend/src/views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm.tsx
b/superset-frontend/src/views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm.tsx
index da18fa7..68ec3fa 100644
---
a/superset-frontend/src/views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm.tsx
+++
b/superset-frontend/src/views/CRUD/data/database/DatabaseModal/DatabaseConnectionForm.tsx
@@ -44,9 +44,9 @@ export const FormFieldOrder = [
'username',
'password',
'database_name',
- 'query',
'encryption',
'credentials_info',
+ 'query',
];
const selectedFile = document.getElementById('selectedFile');