@hulkapps/app-manager-vue 2.2.8 → 2.2.9

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": "@hulkapps/app-manager-vue",
3
- "version": "2.2.8",
3
+ "version": "2.2.9",
4
4
  "description": "Vue SDK to render app manager contents",
5
5
  "main": "dist/app-manager-vue.ssr.js",
6
6
  "browser": "dist/app-manager-vue.esm.js",
@@ -343,11 +343,14 @@
343
343
  } else return feature.value
344
344
  }
345
345
  else if(feature?.value_type === 'array') {
346
+ console.log(this.featureValues);
347
+ console.log(feature);
346
348
  let values= JSON.parse(feature.value);
347
349
  let that = this;
348
350
  values = values.map(function(value){
349
351
  return that.featureValues[feature.feature_id][value];
350
352
  });
353
+ console.log(values);
351
354
  return values.join(', ')
352
355
  }
353
356
  else if(feature?.value_type === 'string') {