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

beto pushed a commit to branch fix-sqllab
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 1db207ff6d85706b84b292e81a3021b8ae5801dd
Author: Beto Dealmeida <[email protected]>
AuthorDate: Fri Jun 27 11:36:42 2025 -0400

    fix(sqllab): pass DB id instead of name
---
 superset-frontend/src/components/DatabaseSelector/index.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/components/DatabaseSelector/index.tsx 
b/superset-frontend/src/components/DatabaseSelector/index.tsx
index 7f7eb792bd..098163a99b 100644
--- a/superset-frontend/src/components/DatabaseSelector/index.tsx
+++ b/superset-frontend/src/components/DatabaseSelector/index.tsx
@@ -196,7 +196,7 @@ export function DatabaseSelector({
               />
             ),
             value: row.id,
-            id: `${row.backend}-${row.database_name}-${row.id}`,
+            id: row.id,
             database_name: row.database_name,
             backend: row.backend,
             allow_multi_catalog: row.allow_multi_catalog,

Reply via email to