Skip to content

Commit db24a01

Browse files
Don't make null track data rows in slice panel
1 parent a0f72a6 commit db24a01

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ui/src/frontend/chrome_slice_panel.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,9 @@ export class ChromeSliceDetailsPanel extends SlicePanel {
522522
contents));
523523
const value = row.contents.value;
524524
if (typeof value === 'string') {
525+
if (value === 'null') {
526+
continue;
527+
}
525528
renderedRow.push(m('td.value', this.mayLinkify(value)));
526529
} else {
527530
// Type of value being a record is not propagated into the callback

0 commit comments

Comments
 (0)