Files
barker/bookie/src/app/sales/quantity/quantity.component.html
2025-07-10 10:58:48 +00:00

23 lines
621 B
HTML

<mat-dialog-content>
<form [formGroup]="form">
<div class="row-container">
<mat-form-field class="flex-auto">
<mat-label>Quantity</mat-label>
<input
type="text"
matInput
#quantity
formControlName="quantity"
autocomplete="off"
(focus)="quantity.select()"
cdkFocusInitial
/>
</mat-form-field>
</div>
</form>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button [mat-dialog-close]="false">Cancel</button>
<button mat-button (click)="accept()" color="primary">Ok</button>
</mat-dialog-actions>