Skip to content

Commit

Permalink
Don't make null track data rows in slice panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ALevansSamsung committed Nov 20, 2023
1 parent a0f72a6 commit db24a01
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/src/frontend/chrome_slice_panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,9 @@ export class ChromeSliceDetailsPanel extends SlicePanel {
contents));
const value = row.contents.value;
if (typeof value === 'string') {
if (value === 'null') {
continue;
}
renderedRow.push(m('td.value', this.mayLinkify(value)));
} else {
// Type of value being a record is not propagated into the callback
Expand Down

0 comments on commit db24a01

Please sign in to comment.