bruce-models 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1610,7 +1610,7 @@ var Entity;
1610
1610
  const pathStr = attrPaths[i];
1611
1611
  const path = PathUtils.Parse(pathStr);
1612
1612
  const name = Entity.GetValue(entity, path);
1613
- if (name) {
1613
+ if (name && typeof name != "object") {
1614
1614
  return name;
1615
1615
  }
1616
1616
  }