Browse Source

Merge pull request #6236 from abpframework/fix/feature-value-type

fix: stringify feature mng values
pull/6238/head
Mehmet Erim 6 years ago
committed by GitHub
parent
commit
683778ba54
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      npm/ng-packs/packages/feature-management/src/lib/components/feature-management/feature-management.component.ts

2
npm/ng-packs/packages/feature-management/src/lib/components/feature-management/feature-management.component.ts

@ -99,7 +99,7 @@ export class FeatureManagementComponent
Object.keys(this.features).forEach(key => {
this.features[key].forEach(feature => {
if (feature.value !== feature.initialValue)
changedFeatures.push({ name: feature.name, value: feature.value });
changedFeatures.push({ name: feature.name, value: `${feature.value}` });
});
});

Loading…
Cancel
Save