@@ -255,7 +255,7 @@ function updateStatusBar(nodeData, rootValue, data) {
255255 const filename = resolveString ( nodeData . filename ) || "" ;
256256 const moduleName = resolveString ( nodeData . module ) || "" ;
257257 const lineno = nodeData . lineno ;
258- const timeMs = samplesToMilliseconds ( nodeData . value , data ) . toFixed ( 2 ) ;
258+ const timeMs = samplesToMilliseconds ( nodeData . value , data ) ;
259259 const percent = rootValue > 0 ? ( ( nodeData . value / rootValue ) * 100 ) . toFixed ( 1 ) : "0.0" ;
260260
261261 const brandEl = document . getElementById ( 'status-brand' ) ;
@@ -317,9 +317,9 @@ function createPythonTooltip(data) {
317317 . style ( "opacity" , 0 ) ;
318318 }
319319
320- const timeMs = samplesToMilliseconds ( d . data . value , data ) . toFixed ( 2 ) ;
320+ const timeMs = samplesToMilliseconds ( d . data . value , data ) ;
321321 const selfSamples = d . data . self || 0 ;
322- const selfMs = samplesToMilliseconds ( selfSamples , data ) . toFixed ( 2 ) ;
322+ const selfMs = samplesToMilliseconds ( selfSamples , data ) ;
323323 const percentage = ( ( d . data . value / data . value ) * 100 ) . toFixed ( 2 ) ;
324324 const relativePercentage = Math . min ( 100 , ( ( d . data . value / ( zoomedNodeValue ?? data . value ) ) * 100 ) ) . toFixed ( 2 ) ;
325325 const calls = d . data . calls || 0 ;
@@ -403,9 +403,9 @@ function createPythonTooltip(data) {
403403 // Differential stats section
404404 let diffSection = "" ;
405405 if ( d . data . diff !== undefined && d . data . baseline !== undefined ) {
406- const baselineSelf = samplesToMilliseconds ( d . data . baseline , data ) . toFixed ( 2 ) ;
407- const currentSelf = samplesToMilliseconds ( d . data . self_time || 0 , data ) . toFixed ( 2 ) ;
408- const diffMs = samplesToMilliseconds ( d . data . diff , data ) . toFixed ( 2 ) ;
406+ const baselineSelf = samplesToMilliseconds ( d . data . baseline , data ) ;
407+ const currentSelf = samplesToMilliseconds ( d . data . self_time || 0 , data ) ;
408+ const diffMs = samplesToMilliseconds ( d . data . diff , data ) ;
409409 const diffPct = d . data . diff_pct ;
410410 const sign = d . data . diff >= 0 ? "+" : "" ;
411411 const diffClass = d . data . diff > 0 ? "regression" : ( d . data . diff < 0 ? "improvement" : "neutral" ) ;
0 commit comments