@steedos/service-pages 2.2.26 → 2.2.29

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.
@@ -377,7 +377,10 @@
377
377
  });
378
378
 
379
379
  _.each(expandFields, function(fieldName){
380
- if(fieldName && _.isString(objectFields[fieldName].reference_to)){
380
+ if(fieldName.indexOf("\\") > -1){
381
+ fieldName = fieldName.split('\\')[0];
382
+ }
383
+ if(fieldName && objectFields[fieldName] && _.isString(objectFields[fieldName].reference_to)){
381
384
  let spaceUsersCompanyIdsExpand = '';
382
385
  if(objectApiName === 'space_users' && fieldName === 'company_ids'){
383
386
  spaceUsersCompanyIdsExpand = ',name,admins'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/service-pages",
3
- "version": "2.2.26",
3
+ "version": "2.2.29",
4
4
  "main": "package.service.js",
5
5
  "scripts": {},
6
6
  "license": "MIT",
@@ -11,5 +11,5 @@
11
11
  "dependencies": {
12
12
  "@builder.io/react": "^1.1.50"
13
13
  },
14
- "gitHead": "77fa3c2b6bdfebaccb4b7f0886f32eb347cbdd35"
14
+ "gitHead": "9ac3291157ee0c04125f824c8ea8ca1da09c9f71"
15
15
  }