@onehat/data 1.19.37 → 1.19.38

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/data",
3
- "version": "1.19.37",
3
+ "version": "1.19.38",
4
4
  "description": "JS data modeling package with adapters for many storage mediums.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -395,7 +395,9 @@ class OneBuildRepository extends AjaxRepository {
395
395
  return null;
396
396
  }
397
397
 
398
- return this.createStandaloneEntity(root[0]);
398
+ const entity = this.createStandaloneEntity(root[0]);
399
+ entity.isRemotePhantom = false;
400
+ return entity;
399
401
  })
400
402
  .finally(() => {
401
403
  this.markLoading(false);