mirror of
https://github.com/bitwarden/server.git
synced 2025-07-17 07:30:59 -05:00
Fixing comparison issue.
This commit is contained in:
@ -46,7 +46,7 @@ public class PasswordManagerSubscriptionUpdate
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// If the new seat total is equal to the organization's auto-scale seat count
|
/// If the new seat total is equal to the organization's auto-scale seat count
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool MaxSeatsReached => UpdatedSeatTotal.HasValue && MaxAutoScaleSeats.HasValue && UpdatedSeatTotal.Value == MaxAutoScaleSeats.Value;
|
public bool MaxSeatsReached => UpdatedSeatTotal.HasValue && MaxAutoScaleSeats.HasValue && UpdatedSeatTotal.Value >= MaxAutoScaleSeats.Value;
|
||||||
|
|
||||||
public Plan.PasswordManagerPlanFeatures PasswordManagerPlan { get; }
|
public Plan.PasswordManagerPlanFeatures PasswordManagerPlan { get; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user