Files
barker/bookie/src/app/sales/quantity/quantity.component.html
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

30 lines
773 B
HTML

<mat-dialog-content>
<form [formGroup]="form">
<div
fxLayout="row"
fxLayoutAlign="space-around start"
fxLayout.lt-md="column"
fxLayoutGap="20px"
fxLayoutGap.lt-md="0px"
>
<mat-form-field fxFlex>
<mat-label>Quantity</mat-label>
<input
type="text"
matInput
#quantity
placeholder="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>