We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4b1229 commit 5c9baa1Copy full SHA for 5c9baa1
1 file changed
Lib/profiling/sampling/_flamegraph_assets/flamegraph.js
@@ -317,7 +317,7 @@ function createPythonTooltip(data) {
317
const selfSamples = d.data.self || 0;
318
const selfMs = (selfSamples / 1000).toFixed(2);
319
const percentage = ((d.data.value / data.value) * 100).toFixed(2);
320
- const relativePercentage = Math.min(100, ((d.data.value / (zoomedNodeValue ?? data.value)) * 100).toFixed(2));
+ const relativePercentage = Math.min(100, ((d.data.value / (zoomedNodeValue ?? data.value)) * 100)).toFixed(2);
321
const calls = d.data.calls || 0;
322
const childCount = d.children ? d.children.length : 0;
323
const source = d.data.source;
0 commit comments