mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-03 12:16:10 +00:00
feat(react): moving schema tab to be default (#2244)
This commit is contained in:
parent
dfe0f3c4da
commit
350e7aaf3c
@ -44,6 +44,11 @@ export const DatasetProfile = ({ urn }: { urn: string }): JSX.Element => {
|
||||
schema,
|
||||
}: Dataset) => {
|
||||
return [
|
||||
{
|
||||
name: TabType.Schema,
|
||||
path: TabType.Schema.toLowerCase(),
|
||||
content: <SchemaView schema={schema} />,
|
||||
},
|
||||
{
|
||||
name: TabType.Ownership,
|
||||
path: TabType.Ownership.toLowerCase(),
|
||||
@ -57,11 +62,6 @@ export const DatasetProfile = ({ urn }: { urn: string }): JSX.Element => {
|
||||
/>
|
||||
),
|
||||
},
|
||||
{
|
||||
name: TabType.Schema,
|
||||
path: TabType.Schema.toLowerCase(),
|
||||
content: <SchemaView schema={schema} />,
|
||||
},
|
||||
{
|
||||
name: TabType.Lineage,
|
||||
path: TabType.Lineage.toLowerCase(),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user