提交 333a0128 编写于 作者: S Sandeep Somavarapu

#49816 check for element

上级 fd63cd55
......@@ -100,8 +100,10 @@ export abstract class ViewletPanel extends Panel {
}
focus(): void {
this.element.focus();
this._onDidFocus.fire();
if (this.element) {
this.element.focus();
this._onDidFocus.fire();
}
}
private setActions(): void {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册