提交 05fc00ea 编写于 作者: I isidor

debug: toString of OutputNameValueElement do not take name into account if it is not defined

fixes #27523
上级 8cf60f34
......@@ -96,7 +96,7 @@ export class OutputNameValueElement extends AbstractOutputElement implements IEx
}
public toString(): string {
return `${this.name}: ${this.value}`;
return this.name ? `${this.name}: ${this.value}` : this.value;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册