提交 e7b8bd21 编写于 作者: A Andre Weinand

drop column attribute if value is 0; see #46784

上级 f31add91
......@@ -109,7 +109,7 @@ export class MainThreadDebugService implements MainThreadDebugServiceShape {
id: l.id,
enabled: l.enabled,
lineNumber: l.line + 1,
column: l.character > 0 ? l.character + 1 : 0,
column: l.character > 0 ? l.character + 1 : undefined, // a column value of 0 results in an omitted column attribute; see #46784
condition: l.condition,
hitCondition: l.hitCondition,
logMessage: l.logMessage
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册