@parca/profile 0.17.6 → 0.17.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.17.7](https://github.com/parca-dev/parca/compare/@parca/profile@0.17.6...@parca/profile@0.17.7) (2025-06-05)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.17.6](https://github.com/parca-dev/parca/compare/@parca/profile@0.17.5...@parca/profile@0.17.6) (2025-06-05)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -167,7 +167,7 @@ export const IcicleGraphArrow = memo(function IcicleGraphArrow({ arrow, total, f
167
167
  };
168
168
  const depthColumn = table.getChild(FIELD_DEPTH);
169
169
  const maxDepth = getMaxDepth(depthColumn);
170
- const height = maxDepth * RowHeight;
170
+ const height = (maxDepth + 1) * RowHeight;
171
171
  // To find the selected row, we must walk the current path and look at which
172
172
  // children of the current frame matches the path element exactly. Until the
173
173
  // end, the row we find at the end is our selected row.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.17.6",
3
+ "version": "0.17.7",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@headlessui/react": "^1.7.19",
@@ -77,5 +77,5 @@
77
77
  "access": "public",
78
78
  "registry": "https://registry.npmjs.org/"
79
79
  },
80
- "gitHead": "57a6cd95c786690c9cdd0daaf9206df1bcf8d32e"
80
+ "gitHead": "a8896081ec9dc74bdc1f4f74e8ed4dc15998361e"
81
81
  }
@@ -249,7 +249,7 @@ export const IcicleGraphArrow = memo(function IcicleGraphArrow({
249
249
 
250
250
  const depthColumn = table.getChild(FIELD_DEPTH);
251
251
  const maxDepth = getMaxDepth(depthColumn);
252
- const height = maxDepth * RowHeight;
252
+ const height = (maxDepth + 1) * RowHeight;
253
253
 
254
254
  // To find the selected row, we must walk the current path and look at which
255
255
  // children of the current frame matches the path element exactly. Until the