1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

fix adjust seat pricing

This commit is contained in:
Kyle Spearrin
2018-09-12 12:26:07 -04:00
parent 86bc6fa807
commit 22a8f766c7
3 changed files with 4 additions and 4 deletions

2
jslib

Submodule jslib updated: 832babf704...7dc14a0d18

View File

@@ -53,6 +53,6 @@ export class AdjustSeatsComponent {
}
get adjustedSeatTotal(): number {
return this.seatAdjustment * this.seatAdjustment;
return this.seatAdjustment * this.seatPrice;
}
}

View File

@@ -257,11 +257,11 @@ export class OrganizationBillingComponent implements OnInit {
case PlanType.EnterpriseMonthly:
return 4;
case PlanType.EnterpriseAnnually:
return 3;
return 36;
case PlanType.TeamsMonthly:
return 2.5;
case PlanType.TeamsAnnually:
return 2;
return 24;
default:
return 0;
}