mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-22 11:45:59 +01:00
[AC-2853] [AC-2854] [AC-2861] Consolidated Billing UI Bugs (#10055)
* Fixed Used column on clients page * Prevent MSP from scaling client below the number of its members * Prevent MSP from selecting negative seats when creating client
This commit is contained in:
parent
ea76760782
commit
9a58b3b774
@ -56,7 +56,7 @@
|
||||
<bit-label>
|
||||
{{ "seats" | i18n }}
|
||||
</bit-label>
|
||||
<input type="text" bitInput formControlName="seats" />
|
||||
<input type="number" bitInput formControlName="seats" min="1" />
|
||||
<bit-hint
|
||||
class="tw-text-muted tw-grid tw-grid-flow-col tw-gap-1 tw-grid-cols-1 tw-grid-rows-2"
|
||||
*ngIf="openSeats > 0"
|
||||
|
@ -10,7 +10,12 @@
|
||||
<bit-label>
|
||||
{{ "assignedSeats" | i18n }}
|
||||
</bit-label>
|
||||
<input type="number" bitInput formControlName="assignedSeats" />
|
||||
<input
|
||||
type="number"
|
||||
bitInput
|
||||
formControlName="assignedSeats"
|
||||
[min]="dialogParams.organization.occupiedSeats"
|
||||
/>
|
||||
<bit-hint class="tw-text-muted" *ngIf="openSeats > 0 || isServiceUserWithPurchasedSeats">
|
||||
<div
|
||||
*ngIf="!this.isServiceUserWithPurchasedSeats"
|
||||
|
@ -42,7 +42,7 @@ export class ManageClientSubscriptionDialogComponent implements OnInit {
|
||||
protected formGroup = new FormGroup({
|
||||
assignedSeats: new FormControl<number>(this.dialogParams.organization.seats, [
|
||||
Validators.required,
|
||||
Validators.min(0),
|
||||
Validators.min(this.dialogParams.organization.occupiedSeats),
|
||||
]),
|
||||
});
|
||||
|
||||
|
@ -50,7 +50,7 @@
|
||||
<span class="tw-text-muted">{{ client.seats }}</span>
|
||||
</td>
|
||||
<td bitCell class="tw-whitespace-nowrap">
|
||||
<span class="tw-text-muted">{{ client.assignedSeats }}</span>
|
||||
<span class="tw-text-muted">{{ client.occupiedSeats }}</span>
|
||||
</td>
|
||||
<td bitCell class="tw-whitespace-nowrap">
|
||||
<span class="tw-text-muted">{{ client.remainingSeats }}</span>
|
||||
|
Loading…
Reference in New Issue
Block a user