Skip to content

Commit

Permalink
Merge "ui: fix crash on incomplete heap graphs" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
LalitMaganti authored and Gerrit Code Review committed Sep 10, 2024
2 parents cb5b876 + cdd235c commit 7eb1a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/core_plugins/heap_profile/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ function flamegraphAttrsForHeapGraph(engine: Engine, ts: time, upid: number) {
select
id,
parent_id as parentId,
name,
ifnull(name, '[Unknown]') as name,
root_type,
self_size,
self_count
Expand Down Expand Up @@ -335,7 +335,7 @@ function flamegraphAttrsForHeapGraph(engine: Engine, ts: time, upid: number) {
select
id,
parent_id as parentId,
name,
ifnull(name, '[Unknown]') as name,
root_type,
self_size,
self_count
Expand Down

0 comments on commit 7eb1a22

Please sign in to comment.