From b2f42f1b9f17a1a28533e719116893a5d3f15cbb Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 31 Mar 2024 10:54:23 +0300 Subject: [PATCH] Close context menu immediately when clicked on mass tag --- public/scripts/BulkEditOverlay.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/scripts/BulkEditOverlay.js b/public/scripts/BulkEditOverlay.js index f3df8156d..fccf12da3 100644 --- a/public/scripts/BulkEditOverlay.js +++ b/public/scripts/BulkEditOverlay.js @@ -853,6 +853,7 @@ class BulkEditOverlay { */ handleContextMenuTag = () => { CharacterContextMenu.tag(this.selectedCharacters); + this.browseState(); }; addStateChangeCallback = callback => this.stateChangeCallbacks.push(callback);