mirror of
https://github.com/bitwarden/web
synced 2025-12-21 02:33:19 +00:00
fix adjust seat pricing
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 832babf704...7dc14a0d18
@@ -53,6 +53,6 @@ export class AdjustSeatsComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get adjustedSeatTotal(): number {
|
get adjustedSeatTotal(): number {
|
||||||
return this.seatAdjustment * this.seatAdjustment;
|
return this.seatAdjustment * this.seatPrice;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -257,11 +257,11 @@ export class OrganizationBillingComponent implements OnInit {
|
|||||||
case PlanType.EnterpriseMonthly:
|
case PlanType.EnterpriseMonthly:
|
||||||
return 4;
|
return 4;
|
||||||
case PlanType.EnterpriseAnnually:
|
case PlanType.EnterpriseAnnually:
|
||||||
return 3;
|
return 36;
|
||||||
case PlanType.TeamsMonthly:
|
case PlanType.TeamsMonthly:
|
||||||
return 2.5;
|
return 2.5;
|
||||||
case PlanType.TeamsAnnually:
|
case PlanType.TeamsAnnually:
|
||||||
return 2;
|
return 24;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user