Fix renew plan label (#2993)

This commit is contained in:
Thomas Kaul 2024-02-11 21:37:11 +01:00 committed by GitHub
parent d5d40c0ea1
commit b758654158
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View File

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

View File

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

View File

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