added fixes for input
This commit is contained in:
parent
6e9f4133d2
commit
450b63620f
2 changed files with 3 additions and 4 deletions
|
@ -61,10 +61,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div>
|
|
||||||
<input value="monthly" type="radio" name="monthly" [(ngModel)]="recurringType" (ngModelChange)="transactionFormValidate()">
|
|
||||||
<label>Monthly</label>
|
|
||||||
</div>
|
|
||||||
<div>
|
<div>
|
||||||
<input value="monthly" type="radio" name="monthly" [(ngModel)]="recurringType" (ngModelChange)="transactionFormValidate()">
|
<input value="monthly" type="radio" name="monthly" [(ngModel)]="recurringType" (ngModelChange)="transactionFormValidate()">
|
||||||
<label>Monthly</label>
|
<label>Monthly</label>
|
||||||
|
|
|
@ -273,6 +273,9 @@ export class AddDataComponent implements OnInit {
|
||||||
this.amount = null;
|
this.amount = null;
|
||||||
this.transactionFormInvalid = true;
|
this.transactionFormInvalid = true;
|
||||||
this.showAddStore = false;
|
this.showAddStore = false;
|
||||||
|
this.essentialPurchase = false;
|
||||||
|
this.recurringPurchase = false;
|
||||||
|
this.recurringType = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
onSubmitPayroll() {
|
onSubmitPayroll() {
|
||||||
|
|
Reference in a new issue