Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
AdiGajbhiye committed Oct 1, 2024
1 parent 1c6728d commit 0e575ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/webview_provider/sqlLineagePanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,9 +404,8 @@ export class SQLLineagePanel implements Disposable {
.sort((a, b) => a.name.localeCompare(b.name)),
};
}
const tableName = splits[2];
const { nodeMetaMap } = event;
const node = nodeMetaMap.lookupByBaseName(tableName);
const node = nodeMetaMap.lookupByUniqueId(table);
if (!node) {
return;
}
Expand Down

0 comments on commit 0e575ba

Please sign in to comment.