fixed recurring transaction editing
This commit is contained in:
parent
390b670be5
commit
11f42d08e4
2 changed files with 3 additions and 7 deletions
|
@ -104,7 +104,7 @@
|
|||
<label class="col-md-3 form-control-label" for="text-input">Budget Type</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
<select type="text" class="form-control" [compareWith]="byId" [(ngModel)]="clickedRecur.category">
|
||||
<select type="text" class="form-control" [(ngModel)]="clickedRecur.category">
|
||||
<option value="0">Uncategorised</option>
|
||||
<option *ngFor="let category of categoryIdList" [ngValue]="category">
|
||||
{{ categoryList[category] }}
|
||||
|
|
Reference in a new issue