Unverified Commit f51b2aa3 authored by Tamika Tannis's avatar Tamika Tannis Committed by GitHub

Do not render component if no lineage url (#413)

parent f104ca17
......@@ -15,6 +15,8 @@ const LineageLink: React.SFC<LineageLinkProps> = ({ tableData }) => {
const { database, cluster, schema, name } = tableData;
const href = config.urlGenerator(database, cluster, schema, name);
if (!href) return null;
const label = 'Lineage';
return (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment