Fix gas report format (#4838)
This commit is contained in:
@ -176,7 +176,7 @@ function formatCellMarkdown(cell) {
|
|||||||
return [
|
return [
|
||||||
!isFinite(cell?.value) ? '-' : cell.value.toString(),
|
!isFinite(cell?.value) ? '-' : cell.value.toString(),
|
||||||
!isFinite(cell?.delta) ? '-' : plusSign(cell.delta) + cell.delta.toString(),
|
!isFinite(cell?.delta) ? '-' : plusSign(cell.delta) + cell.delta.toString(),
|
||||||
!isFinite(cell?.prcnt) ? '-' : plusSign(cell.prcnt) + cell.prcnt.toFixed(2) + '%' + trend(cell.delta),
|
!isFinite(cell?.prcnt) ? '-' : plusSign(cell.prcnt) + cell.prcnt.toFixed(2) + '% ' + trend(cell.delta),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user