@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/dist/app-manager-vue.esm.js +33 -7
- package/dist/app-manager-vue.min.js +2 -2
- package/dist/app-manager-vue.ssr.js +35 -9
- package/dist/hulkapps-app-manager.css +1 -1
- package/dist/hulkapps-app-manager.min.css +1 -1
- package/package.json +1 -1
- package/src/components/Plans/AppManagerGroupPlan.vue +3 -0
package/package.json
CHANGED
|
@@ -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') {
|