提交 25cbe685 编写于 作者: M Matt Bierner

Fix null check

上级 48cc02be
......@@ -283,11 +283,15 @@ export class ParameterHintsWidget implements IContentWidget, IDisposable {
}
next(): void {
this.model.next();
if (this.model) {
this.model.next();
}
}
previous(): void {
this.model.previous();
if (this.model) {
this.model.previous();
}
}
cancel(): void {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册