提交 4f806a77 编写于 作者: C Christof Marti

Add missing null check (fixes #46617)

上级 65e502e8
......@@ -245,7 +245,9 @@ export class QuickInputService extends Component implements IQuickInputService {
}
protected updateStyles() {
this.inputBox.style(this.themeService.getTheme());
if (this.inputBox) {
this.inputBox.style(this.themeService.getTheme());
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册