mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Fixing comparison issue.
This commit is contained in:
parent
65996ae0a9
commit
e78c9f65b4
@ -46,7 +46,7 @@ public class PasswordManagerSubscriptionUpdate
|
||||
/// <summary>
|
||||
/// If the new seat total is equal to the organization's auto-scale seat count
|
||||
/// </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; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user