提交 8f88ee2a 编写于 作者: I isidor

fixes #17951

上级 411d03dd
......@@ -71,7 +71,7 @@ export class OutputNameValueElement extends AbstractOutputElement implements deb
}
public get hasChildren(): boolean {
return isObject(this.valueObj) && Object.getOwnPropertyNames(this.valueObj).length > 0;
return (Array.isArray(this.valueObj) && this.valueObj.length > 0) || (isObject(this.valueObj) && Object.getOwnPropertyNames(this.valueObj).length > 0);
}
public getChildren(): TPromise<debug.IExpression[]> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册