Skip to content

Commit 31a509c

Browse files
authored
ignore focus out in string prompts (#11898)
1 parent 637ec3a commit 31a509c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

extension/src/server/interactionService.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ export class InteractionService implements IInteractionService {
8787
}
8888

8989
return null;
90-
}
90+
},
91+
ignoreFocusOut: true
9192
});
9293

9394
return input || null;
@@ -117,7 +118,8 @@ export class InteractionService implements IInteractionService {
117118
}
118119

119120
return null;
120-
}
121+
},
122+
ignoreFocusOut: true
121123
});
122124

123125
return input || null;

0 commit comments

Comments
 (0)