Bug 1381089 - Fix about:telemetry raw JSON display r=chutten

Display the entire ping instead of just the payload

MozReview-Commit-ID: JnNk2AjvTvC

--HG--
extra : rebase_source : f5f5eb329f4eafb5762fa12fa9a1724d9a730790
This commit is contained in:
flyingrub 2017-07-17 22:11:03 +02:00
parent ad06bdbe98
commit 56f07a5544

View File

@ -993,7 +993,7 @@ var RawPayload = {
render(aPing) {
setHasData("raw-ping-data-section", true);
let pre = document.getElementById("raw-ping-data");
pre.textContent = JSON.stringify(aPing.payload, null, 2);
pre.textContent = JSON.stringify(aPing, null, 2);
}
};