@parca/profile 0.16.231 → 0.16.232

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.16.232 (2023-08-25)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.16.231](https://github.com/parca-dev/parca/compare/@parca/profile@0.16.230...@parca/profile@0.16.231) (2023-08-24)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -175,7 +175,7 @@ export const RowName = (table, row) => {
175
175
  mapping = `[${getLastItem(mappingFile) ?? ''}]`;
176
176
  }
177
177
  const functionName = table.getChild('function_name')?.get(row) ?? '';
178
- if (functionName !== null) {
178
+ if (functionName !== null && functionName !== '') {
179
179
  return `${mapping} ${functionName}`;
180
180
  }
181
181
  const address = table.getChild('location_address')?.get(row) ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.16.231",
3
+ "version": "0.16.232",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@parca/client": "^0.16.86",
@@ -49,5 +49,5 @@
49
49
  "access": "public",
50
50
  "registry": "https://registry.npmjs.org/"
51
51
  },
52
- "gitHead": "5cf2b0e90d89a645457ed270480c6fb1187070f7"
52
+ "gitHead": "72eb3b65696d52545a36419b75b35ceccbda02a8"
53
53
  }
@@ -273,7 +273,7 @@ export const RowName = (table: ArrowTable, row: number): string => {
273
273
  mapping = `[${getLastItem(mappingFile) ?? ''}]`;
274
274
  }
275
275
  const functionName: string | null = table.getChild('function_name')?.get(row) ?? '';
276
- if (functionName !== null) {
276
+ if (functionName !== null && functionName !== '') {
277
277
  return `${mapping} ${functionName}`;
278
278
  }
279
279