From 05f7d1a8a452725691aeaf8cc5ef238cabc8bbc5 Mon Sep 17 00:00:00 2001 From: Alexander Vogt Date: Tue, 19 May 2026 09:28:16 +0200 Subject: [PATCH] fix second hover not working --- frontend/webEditor/src/diagram/nodes/annotation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/webEditor/src/diagram/nodes/annotation.ts b/frontend/webEditor/src/diagram/nodes/annotation.ts index a0d5e002..02b0f515 100644 --- a/frontend/webEditor/src/diagram/nodes/annotation.ts +++ b/frontend/webEditor/src/diagram/nodes/annotation.ts @@ -31,6 +31,7 @@ export class DfdNodeAnnotationUIMouseListener extends MouseListener { clearTimeout(this.stillTimeout); this.stillTimeout = undefined; } + this.lastTarget = undefined; return this.hidePopup(); } this.lastPosition = { x: event.clientX, y: event.clientY };