From 4bdc8d4c68102eccc1c3ffeeaa442d896b1f7a31 Mon Sep 17 00:00:00 2001 From: "JUST.in DO IT" Date: Fri, 17 Apr 2026 05:09:52 -0700 Subject: [PATCH] fix(sqllab): Relocate schema display on table preview (#39420) --- superset-frontend/src/SqlLab/components/TablePreview/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/SqlLab/components/TablePreview/index.tsx b/superset-frontend/src/SqlLab/components/TablePreview/index.tsx index 9e38b83ad7a..9fbcc3c1264 100644 --- a/superset-frontend/src/SqlLab/components/TablePreview/index.tsx +++ b/superset-frontend/src/SqlLab/components/TablePreview/index.tsx @@ -286,7 +286,6 @@ const TablePreview: FC = ({ dbId, catalog, schema, tableName }) => { {backend} {databaseName} {catalog && {catalog}} - {schema && {schema}} <Icons.InsertRowAboveOutlined iconSize="l" /> + {schema ? `${schema}.` : ''} {tableName} {titleActions()}