We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d626ffe + 94732ee commit c78ae89Copy full SHA for c78ae89
app/utils/d3-flame-graphs-v4/d3-flame-graph.js
@@ -84,7 +84,8 @@ const FlameGraphUtils = {
84
if (b.filler) {
85
return -1; // move fillers to the right
86
}
87
- return a.data.name.localeCompare(b.data.name);
+ const name = a.data.name || "";
88
+ return name.localeCompare(b.data.name);
89
});
90
return d3partition(root).descendants();
91
},
0 commit comments