We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376bf6b commit 52cd210Copy full SHA for 52cd210
src/actions/enter.ts
@@ -165,11 +165,11 @@ export class EnterAction {
165
// opening a bubble of some sort. We then need to wait for the bubble to
166
// appear before attempting to navigate into it.
167
curNode.onClick();
168
- if (hasBubble(curNode) && curNode.bubbleIsVisible()) {
169
- renderManagement.finishQueuedRenders().then(() => {
+ renderManagement.finishQueuedRenders().then(() => {
+ if (hasBubble(curNode) && curNode.bubbleIsVisible()) {
170
cursor?.in();
171
- });
172
- }
+ }
+ });
173
return true;
174
} else if (curNode instanceof comments.CommentBarButton) {
175
curNode.performAction();
0 commit comments