1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[AC-1418] Rename service account fields in the options interface

This commit is contained in:
Shane Melton
2023-06-21 15:11:08 -07:00
parent e6816aae8e
commit c3cf745928

View File

@@ -13,8 +13,8 @@ export interface SecretsManagerSubscriptionOptions {
*/
baseServiceAccountCount: number;
additionalServiceAccountCount: number;
additionalServiceAccountLimit: number;
serviceAccountCount: number;
serviceAccountLimit: number;
additionalServiceAccountPrice: number;
}
@@ -92,10 +92,10 @@ export class SecretsManagerAdjustSubscriptionComponent implements OnInit, OnDest
this.formGroup.patchValue({
seatCount: this.options.seatCount,
seatLimit: this.options.seatLimit,
serviceAccountCount: this.options.additionalServiceAccountCount,
serviceAccountLimit: this.options.additionalServiceAccountLimit,
serviceAccountCount: this.options.serviceAccountCount,
serviceAccountLimit: this.options.serviceAccountLimit,
limitSeats: this.options.seatLimit != null,
limitServiceAccounts: this.options.additionalServiceAccountLimit != null,
limitServiceAccounts: this.options.serviceAccountLimit != null,
});
}