fix: Fix bug that caused blocks in flyout to disappear on click in Chrome (#9729)

This commit is contained in:
Aaron Dodson
2026-04-15 09:19:09 -07:00
committed by GitHub
parent 0e0a516990
commit 1de9aa920e
+1 -1
View File
@@ -1004,8 +1004,8 @@ export class Gesture {
this.setTargetBlock(block.getParent()!);
} else {
this.targetBlock = block;
getFocusManager().focusNode(this.targetBlock);
this.targetBlock.bringToFront();
getFocusManager().focusNode(this.targetBlock);
}
}