提交 c5fa4cea 编写于 作者: C Christof Marti

Add undefined check to Quick Input command code path (#49354)

上级 1c889dfd
......@@ -367,7 +367,7 @@ export class QuickInputService extends Component implements IQuickInputService {
}
private close(ok?: true | Thenable<never>, focusLost?: boolean) {
if (this.container.style.display === 'none') {
if (!this.container || this.container.style.display === 'none') {
return TPromise.as(undefined);
}
if (this.controller) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册