Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Fix free trial text to show at the right time (#1281)
Browse files Browse the repository at this point in the history
(cherry picked from commit be65f69)
  • Loading branch information
justindbaur authored and vgrassia committed Nov 10, 2021
1 parent f615953 commit 7fbbe01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/settings/organization-plans.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h2 class="spaced-header">{{'summary' | i18n}}</h2>
<hr class="my-3">
<h2 class="spaced-header mb-4">{{ (createOrganization ? 'paymentInformation' : 'billingInformation') | i18n}}
</h2>
<small class="text-muted font-italic mb-3 d-block" *ngIf="!freeTrial && createOrganization; else paymentChargedImmediately">
<small class="text-muted font-italic mb-3 d-block" *ngIf="freeTrial && createOrganization; else paymentChargedImmediately">
{{'paymentChargedWithTrial' | i18n}}
</small>
<ng-template #paymentChargedImmediately>
Expand Down

0 comments on commit 7fbbe01

Please sign in to comment.