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 2fce115 commit b41c307Copy full SHA for b41c307
src/view/components/profiler/flamegraph/modes/FlamegraphLayout.tsx
@@ -48,14 +48,14 @@ export function FlamegraphLayout({
48
let text: any = "";
49
if (pos.commitParent || pos.weight === -1) {
50
text = (
51
- <span data-testid="node-name">
52
- {node.name}
+ <>
+ <span data-testid="node-name">{node.name}</span>
53
{filterHoc && node.hocs ? (
54
<HocLabels hocs={node.hocs} nodeId={node.id} canMark={false} />
55
) : (
56
""
57
)}
58
- </span>
+ </>
59
);
60
} else {
61
const self = formatTime(commit.selfDurations.get(node.id)!);
0 commit comments