mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
[AC-2805] Consolidated Billing UI Updates (#9893)
* Add empty state for invoices * Make cards on create client dialog tabbable * Add space in $ / month per member * Mute text, remove (Monthly) and right align menu on clients table * Made used seats account for all users and fixed column sort for used/remaining * Resize pricing cards * Rename assignedSeats to occupiedSeats
This commit is contained in:
@@ -10,6 +10,8 @@ export class ProviderOrganizationResponse extends BaseResponse {
|
||||
revisionDate: string;
|
||||
userCount: number;
|
||||
seats?: number;
|
||||
occupiedSeats?: number;
|
||||
remainingSeats?: number;
|
||||
plan?: string;
|
||||
|
||||
constructor(response: any) {
|
||||
@@ -23,6 +25,8 @@ export class ProviderOrganizationResponse extends BaseResponse {
|
||||
this.revisionDate = this.getResponseProperty("RevisionDate");
|
||||
this.userCount = this.getResponseProperty("UserCount");
|
||||
this.seats = this.getResponseProperty("Seats");
|
||||
this.occupiedSeats = this.getResponseProperty("OccupiedSeats");
|
||||
this.remainingSeats = this.getResponseProperty("RemainingSeats");
|
||||
this.plan = this.getResponseProperty("Plan");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user