Skip to content

Commit

Permalink
Update report.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pasqualespica authored Nov 30, 2023
1 parent 3c05933 commit 9afc12c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report/src/utils/report.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ let p = res.then(function(result) {
let index = 0;
result.resources.forEach(e => {
// report["detail"].push( {"status": `${dictionary[e.status]} ${e.status}`, "num":`${e.num}` });
report.text+=`${dictionary[e.status]} ${e.num.toString().padEnd(8, ' ')}\t ${e.status} \n`
report.text+=`${dictionary[e.status]} ${e.num.toString().padEnd(15, ' ')}\t ${e.status} \n`
})

console.log(JSON.stringify(report));
Expand Down

0 comments on commit 9afc12c

Please sign in to comment.