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.
@@ -1581,7 +1581,7 @@
1581
1581
  const pathStr = attrPaths[i];
1582
1582
  const path = exports.PathUtils.Parse(pathStr);
1583
1583
  const name = Entity.GetValue(entity, path);
1584
- if (name) {
1584
+ if (name && typeof name != "object") {
1585
1585
  return name;
1586
1586
  }
1587
1587
  }