diff --git a/custom/benchmark/benchmarkUtils.cfc b/custom/benchmark/benchmarkUtils.cfc index 32ce303..88c9d67 100644 --- a/custom/benchmark/benchmarkUtils.cfc +++ b/custom/benchmark/benchmarkUtils.cfc @@ -63,6 +63,12 @@ component { arrayAppend( row, numberFormat( q [ col ] ) & "%"); else if ( col eq "error" or col eq "snippet") arrayAppend( row, htmleditformat( REReplace( q [ col ], "\n", " ", "ALL") ) ); + else if ( left( col, 1 ) eq "_" ) { + if ( q [ col ] gt 1 ) + arrayAppend( row, numberFormat( q [ col ] ) ); + else + arrayAppend( row, decimalFormat( q [ col ] ) ); + } else arrayAppend( row, q [ col ] ); }