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 499732b commit f236ff6Copy full SHA for f236ff6
ui/packages/shared/profile/src/ProfileFlameGraph/FlameGraphArrow/useVisibleNodes.ts
@@ -151,9 +151,9 @@ export const useVisibleNodes = ({
151
continue;
152
}
153
154
- // Size culling: Skip nodes too small to be visible (< 0.1px width)
+ // Size culling: Skip nodes too small to be visible (< 1px width)
155
const computedWidth = (cumulative / totalNumber) * width;
156
- if (computedWidth <= 0.1) {
+ if (computedWidth <= 1) {
157
158
159
0 commit comments