From e21ffc4e98ad11f7700d2b5c5f5dfa621ef9c2e6 Mon Sep 17 00:00:00 2001 From: Philip Fulcher Date: Fri, 7 Oct 2022 14:26:42 -0600 Subject: [PATCH] fix(graph): close tooltips when panning graph (#12468) (cherry picked from commit 305fb2e4e0299f6caf6d73ed925a79c1d0fd92de) --- graph/client/src/app/machines/graph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/client/src/app/machines/graph.ts b/graph/client/src/app/machines/graph.ts index 777fcccc7dbac..0df3aeac2a58a 100644 --- a/graph/client/src/app/machines/graph.ts +++ b/graph/client/src/app/machines/graph.ts @@ -449,7 +449,7 @@ export class GraphService { this.renderGraph.$id(currentFocusedProjectName).addClass('focused'); } - this.renderGraph.on('zoom', () => { + this.renderGraph.on('zoom pan', () => { this.tooltipService.hideAll(); });