We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 427940d commit 814ba24Copy full SHA for 814ba24
1 file changed
extensions/ql-vscode/src/view/results/Graph.tsx
@@ -47,9 +47,7 @@ export function Graph({ graphData, databaseUri }: GraphProps) {
47
d.attributes["xlink:href"] = "#";
48
d.attributes["href"] = "#";
49
loc.uri = `file://${loc.uri}`;
50
- select(this).on("click", function (e) {
51
- jumpToLocation(loc, databaseUri);
52
- });
+ select(this).on("click", () => jumpToLocation(loc, databaseUri));
53
}
54
55
if ("fill" in d.attributes) {
0 commit comments