Fix: Lineage Value is not changing on fqn change. (#2795)

This commit is contained in:
Sachin Chaurasiya 2022-02-17 10:14:27 +05:30 committed by GitHub
parent 50799227e4
commit 8555966f61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -487,6 +487,7 @@ const DashboardDetailsPage = () => {
useEffect(() => {
fetchDashboardDetail(dashboardFQN);
setEntityLineage({} as EntityLineage);
}, [dashboardFQN]);
return (

View File

@ -464,6 +464,7 @@ const DatasetDetailsPage: FunctionComponent = () => {
setTableFQN(
getPartialNameFromFQN(datasetFQN, ['service', 'database', 'table'], '.')
);
setEntityLineage({} as EntityLineage);
}, [datasetFQN]);
return (

View File

@ -430,6 +430,7 @@ const PipelineDetailsPage = () => {
useEffect(() => {
fetchPipelineDetail(pipelineFQN);
setEntityLineage({} as EntityLineage);
}, [pipelineFQN]);
return (