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:
parent
0ce888e5a4
commit
234c9ff772
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: don't exclude features present on license
|
||||
```
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue