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

Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
This commit is contained in:
hc-github-team-secure-vault-core 2023-09-12 12:48:06 -04:00 committed by GitHub
parent 0ce888e5a4
commit 234c9ff772
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;