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.
1 parent 4fcaee3 commit 194d3baCopy full SHA for 194d3ba
src/views/hierarchicalPackageNode.ts
@@ -31,7 +31,7 @@ export class HierarchicalPackageNode extends PackageNode {
31
if (data) {
32
if (this.nodeData?.children) {
33
this.nodeData.children.push(...data);
34
- this.nodeData.children = _.uniqBy(this.nodeData.children, "path");
+ this.nodeData.children = _.uniqBy(this.nodeData.children, (child: INodeData) => [child.path, child.name].join());
35
} else {
36
this.nodeData.children = data;
37
}
0 commit comments