This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 5.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 91ba5b3c9e4a7f2122f248e59678503f86ac1575 Author: JUST.in DO IT <[email protected]> AuthorDate: Fri Mar 7 13:28:05 2025 -0800 fix(sqllab): Allow clear on schema and catalog (#32515) (cherry picked from commit 4c3aae7583fd1fec034574894c766d9466610927) --- superset-frontend/src/components/DatabaseSelector/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/superset-frontend/src/components/DatabaseSelector/index.tsx b/superset-frontend/src/components/DatabaseSelector/index.tsx index 3b677316a4..96223b105f 100644 --- a/superset-frontend/src/components/DatabaseSelector/index.tsx +++ b/superset-frontend/src/components/DatabaseSelector/index.tsx @@ -406,6 +406,7 @@ export default function DatabaseSelector({ options={catalogOptions} showSearch value={currentCatalog || undefined} + allowClear />, refreshIcon, ); @@ -432,6 +433,7 @@ export default function DatabaseSelector({ options={schemaOptions} showSearch value={currentSchema} + allowClear />, refreshIcon, );
