Skip to content

Commit

Permalink
Minor code adjustments
Browse files Browse the repository at this point in the history
Minor code adjustments
  • Loading branch information
AleziaKurdis committed Nov 22, 2020
1 parent b633bc4 commit 343ded8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/system/create/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2931,7 +2931,7 @@ function getDomainOnlyChildrenIDs(id) {
var properties;
for (var i = 0; i < allChildren.length; i++) {
properties = Entities.getEntityProperties(allChildren[i], ["name"]);
if (properties.name !== entityShapeVisualizerSessionName && properties.name !== undefined) {
if (properties.name !== undefined && properties.name !== entityShapeVisualizerSessionName) {
realChildren.push(allChildren[i]);
}
}
Expand Down

0 comments on commit 343ded8

Please sign in to comment.