This is an automated email from the ASF dual-hosted git repository.
hugh 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 50ad09b removing paramProperties (#17024)
50ad09b is described below
commit 50ad09bbdca880aef6fdcc2a2197468623ce4b6f
Author: AAfghahi <[email protected]>
AuthorDate: Thu Oct 7 15:28:41 2021 -0400
removing paramProperties (#17024)
---
superset-frontend/src/views/CRUD/data/database/DatabaseModal/index.tsx | 2 --
1 file changed, 2 deletions(-)
diff --git
a/superset-frontend/src/views/CRUD/data/database/DatabaseModal/index.tsx
b/superset-frontend/src/views/CRUD/data/database/DatabaseModal/index.tsx
index 511591b..e4f2704 100644
--- a/superset-frontend/src/views/CRUD/data/database/DatabaseModal/index.tsx
+++ b/superset-frontend/src/views/CRUD/data/database/DatabaseModal/index.tsx
@@ -180,7 +180,6 @@ type DBReducerActionType =
database_name?: string;
engine?: string;
configuration_method: CONFIGURATION_METHOD;
- paramProperties?: Record<string, any>;
};
}
| {
@@ -651,7 +650,6 @@ const DatabaseModal: FunctionComponent<DatabaseModalProps>
= ({
configuration_method: isDynamic
? CONFIGURATION_METHOD.DYNAMIC_FORM
: CONFIGURATION_METHOD.SQLALCHEMY_URI,
- paramProperties: parameters?.properties,
},
});
}