We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daac066 commit 51d964dCopy full SHA for 51d964d
src/app/shared/forms/offer/price-plans/price-component-drawer/price-component-drawer.component.ts
@@ -63,7 +63,8 @@ export class PriceComponentDrawerComponent implements OnInit {
63
}, 50);
64
65
for(let i=0;i<this.prodChars.length;i++){
66
- if (!certifications.some(certification => certification.name === this.prodChars[i].name) && !this.prodChars[i].name.startsWith('Compliance:')) {
+ if (!certifications.some(certification => certification.name === this.prodChars[i].name) && !this.prodChars[i].name.startsWith('Compliance:') &&
67
+ !this.prodChars[i].name.endsWith(' - enabled')) {
68
this.filteredChars.push(this.prodChars[i]);
69
}
70
0 commit comments