mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-14 04:29:21 +00:00
This commit is contained in:
parent
fbeea8844e
commit
c1102b13fa
@ -583,14 +583,14 @@ const DatabaseSchemaPage: FunctionComponent = () => {
|
|||||||
}),
|
}),
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
key: 'name',
|
key: 'name',
|
||||||
render: (text: string, record: Table) => {
|
render: (_, record: Table) => {
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
to={getEntityLink(
|
to={getEntityLink(
|
||||||
EntityType.TABLE,
|
EntityType.TABLE,
|
||||||
record.fullyQualifiedName as string
|
record.fullyQualifiedName as string
|
||||||
)}>
|
)}>
|
||||||
{text}
|
{getEntityName(record)}
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user