Fix renew plan label (#2993)

pull/2994/head
Thomas Kaul 8 months ago committed by GitHub
parent d5d40c0ea1
commit b758654158
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -177,7 +177,10 @@
>Upgrade Plan</ng-container
>
<ng-container
*ngIf="user.subscription.offer === 'renewal'"
*ngIf="
user.subscription.offer === 'renewal' ||
user.subscription.offer === 'renewal-early-bird'
"
i18n
>Renew Plan</ng-container
></span

@ -17,7 +17,9 @@
<ng-container *ngIf="user.subscription.offer === 'default'" i18n
>Upgrade Plan</ng-container
>
<ng-container *ngIf="user.subscription.offer === 'renewal'" i18n
<ng-container
*ngIf="user.subscription.offer === 'renewal' || user.subscription.offer === 'renewal-early-bird'"
i18n
>Renew Plan</ng-container
>
</button>

@ -265,7 +265,7 @@
>Upgrade Plan</ng-container
>
<ng-container
*ngIf="user.subscription.offer === 'renewal'"
*ngIf="user.subscription.offer === 'renewal' || user.subscription.offer === 'renewal-early-bird'"
i18n
>Renew Plan</ng-container
>

Loading…
Cancel
Save