Backport of UI: [VAULT-18040] List all features in license info into release/1.15.x (#23006)

Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
This commit is contained in:
hc-github-team-secure-vault-core
2023-09-12 14:07:22 -04:00
committed by GitHub
parent a9dac26831
commit 1d6da3c3f9
2 changed files with 9 additions and 1 deletions

3
changelog/22855.txt Normal file
View File

@@ -0,0 +1,3 @@
```release-note:bug
ui: don't exclude features present on license
```

View File

@@ -28,7 +28,12 @@ import { allFeatures } from 'vault/helpers/all-features';
*/
export default class LicenseInfoComponent extends Component {
get featuresInfo() {
return allFeatures().map((feature) => {
const notIncludedInFeaturesList = this.args.features.filter(
(feature) => !allFeatures().includes(feature)
);
const features = [...allFeatures(), ...notIncludedInFeaturesList];
return features.map((feature) => {
const active = this.args.features.includes(feature);
if (active && feature === 'Performance Standby') {
const count = this.args.performanceStandbyCount;