mirror of
https://github.com/apache/superset.git
synced 2026-06-01 13:49:21 +00:00
fix(sqllab): Relocate schema display on table preview (#39420)
This commit is contained in:
@@ -286,7 +286,6 @@ const TablePreview: FC<Props> = ({ dbId, catalog, schema, tableName }) => {
|
||||
<Breadcrumb.Item>{backend}</Breadcrumb.Item>
|
||||
<Breadcrumb.Item>{databaseName}</Breadcrumb.Item>
|
||||
{catalog && <Breadcrumb.Item>{catalog}</Breadcrumb.Item>}
|
||||
{schema && <Breadcrumb.Item>{schema}</Breadcrumb.Item>}
|
||||
<Breadcrumb.Item> </Breadcrumb.Item>
|
||||
</Breadcrumb>
|
||||
<div style={{ display: 'none' }} aria-hidden="true">
|
||||
@@ -314,6 +313,7 @@ const TablePreview: FC<Props> = ({ dbId, catalog, schema, tableName }) => {
|
||||
</div>
|
||||
<Title>
|
||||
<Icons.InsertRowAboveOutlined iconSize="l" />
|
||||
{schema ? `${schema}.` : ''}
|
||||
{tableName}
|
||||
{titleActions()}
|
||||
</Title>
|
||||
|
||||
Reference in New Issue
Block a user