@@ -264,7 +264,7 @@ function updateStatusBar(nodeData, rootValue, data) {
264264 const filename = resolveString ( nodeData . filename ) || "" ;
265265 const moduleName = resolveString ( nodeData . module ) || "" ;
266266 const lineno = nodeData . lineno ;
267- const timeMs = samplesToMilliseconds ( nodeData . value , data ) . toFixed ( 2 ) ;
267+ const timeMs = samplesToMilliseconds ( nodeData . value , data ) ;
268268 const percent = rootValue > 0 ? ( ( nodeData . value / rootValue ) * 100 ) . toFixed ( 1 ) : "0.0" ;
269269
270270 const brandEl = document . getElementById ( 'status-brand' ) ;
@@ -326,9 +326,9 @@ function createPythonTooltip(data) {
326326 . style ( "opacity" , 0 ) ;
327327 }
328328
329- const timeMs = samplesToMilliseconds ( d . data . value , data ) . toFixed ( 2 ) ;
329+ const timeMs = samplesToMilliseconds ( d . data . value , data ) ;
330330 const selfSamples = d . data . self || 0 ;
331- const selfMs = samplesToMilliseconds ( selfSamples , data ) . toFixed ( 2 ) ;
331+ const selfMs = samplesToMilliseconds ( selfSamples , data ) ;
332332 const percentage = ( ( d . data . value / data . value ) * 100 ) . toFixed ( 2 ) ;
333333 const relativePercentage = Math . min ( 100 , ( ( d . data . value / ( zoomedNodeValue ?? data . value ) ) * 100 ) ) . toFixed ( 2 ) ;
334334 const calls = d . data . calls || 0 ;
@@ -412,9 +412,9 @@ function createPythonTooltip(data) {
412412 // Differential stats section
413413 let diffSection = "" ;
414414 if ( d . data . diff !== undefined && d . data . baseline !== undefined ) {
415- const baselineSelf = samplesToMilliseconds ( d . data . baseline , data ) . toFixed ( 2 ) ;
416- const currentSelf = samplesToMilliseconds ( d . data . self_time || 0 , data ) . toFixed ( 2 ) ;
417- const diffMs = samplesToMilliseconds ( d . data . diff , data ) . toFixed ( 2 ) ;
415+ const baselineSelf = samplesToMilliseconds ( d . data . baseline , data ) ;
416+ const currentSelf = samplesToMilliseconds ( d . data . self_time || 0 , data ) ;
417+ const diffMs = samplesToMilliseconds ( d . data . diff , data ) ;
418418 const diffPct = d . data . diff_pct ;
419419 const sign = d . data . diff >= 0 ? "+" : "" ;
420420 const diffClass = d . data . diff > 0 ? "regression" : ( d . data . diff < 0 ? "improvement" : "neutral" ) ;
0 commit comments