chrv-components 1.10.27 → 1.10.28

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.
Binary file
@@ -2790,7 +2790,7 @@ class ChrDataTable {
2790
2790
  }
2791
2791
  getNestedProperty(obj, path) {
2792
2792
  if (path === null || path === undefined)
2793
- return null;
2793
+ return obj;
2794
2794
  const value = path.split('.').reduce((acc, key) => acc && acc[key], obj);
2795
2795
  return value;
2796
2796
  }