1
0
mirror of https://github.com/bitwarden/web synced 2026-01-07 19:13:21 +00:00

Do not show free trial wording if upgrading plan (#940)

This commit is contained in:
Thomas Rittson
2021-04-22 07:15:37 +10:00
committed by GitHub
parent 3e8194a3f7
commit 714a574028
2 changed files with 12 additions and 5 deletions

View File

@@ -61,6 +61,7 @@ export class OrganizationPlansComponent implements OnInit {
productTypes = ProductType;
formPromise: Promise<any>;
singleOrgPolicyBlock: boolean = false;
freeTrial: boolean = false;
plans: PlanResponse[];
@@ -187,6 +188,7 @@ export class OrganizationPlansComponent implements OnInit {
this.selectedPlan.hasAdditionalSeatsOption) {
this.additionalSeats = 1;
}
this.freeTrial = this.selectedPlan.trialPeriodDays != null;
}
changedOwnedBusiness() {