Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Sep 9, 2024
1 parent de3ddf8 commit ab9d908
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4677,7 +4677,14 @@ class ElementRegistryService {
}
});
}
return groupObjects;
const seenIds = new Set();
return groupObjects.filter(groupObject => {
const isNewId = !seenIds.has(groupObject.id);
if (isNewId) {
seenIds.add(groupObject.id);
}
return isNewId;
});
}
checkChildForGroup(groupObjects, allObjects) {
const registryElementNames = Object.keys(this.registry);
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit ab9d908

Please sign in to comment.