mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Minor code adjustments
Minor code adjustments
This commit is contained in:
parent
b633bc4a16
commit
343ded8c6f
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue