Skip to content

Commit

Permalink
Fix broken reporter link (#1908)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuverma authored Oct 19, 2022
1 parent 3ec5644 commit e83cb48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/xarc-app-dev/src/lib/stats-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ export function jsonToHtml(obj, useColors, anchors) {
}
newline();
buf.push(" ");
buf.push(this.jsonToHtml(child, useColors, anchors).replace(/\n/g, "\n "));
buf.push(jsonToHtml(child, useColors, anchors).replace(/\n/g, "\n "));
newline();
});
}
Expand Down

0 comments on commit e83cb48

Please sign in to comment.