fix: Table list view within service shows name instead of displayName #10136 (#10142)

This commit is contained in:
Shailesh Parmar 2023-02-08 15:26:26 +05:30 committed by GitHub
parent fbeea8844e
commit c1102b13fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -583,14 +583,14 @@ const DatabaseSchemaPage: FunctionComponent = () => {
}),
dataIndex: 'name',
key: 'name',
render: (text: string, record: Table) => {
render: (_, record: Table) => {
return (
<Link
to={getEntityLink(
EntityType.TABLE,
record.fullyQualifiedName as string
)}>
{text}
{getEntityName(record)}
</Link>
);
},