Fixed multiple display of child software

This commit is contained in:
Cris
2024-05-21 14:03:40 +02:00
parent c4c17f69c7
commit 559a6b317d
+2 -2
View File
@@ -543,8 +543,8 @@ export const CoreFilterCmpt = {
// create children array if not done yet
if (!parent._children) parent._children = [];
// append the child
parent._children.push(child);
// if child is not included in children array, append the child
if (!parent._children.includes(child)) parent._children.push(child);
// parent found
return true;