Changed transaction category input
This commit is contained in:
parent
b7c73d5e48
commit
4f29307fdb
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
||||||
<label class="col-md-3 form-control-label" for="text-input">Category</label>
|
<label class="col-md-3 form-control-label" for="text-input">Category</label>
|
||||||
<div class="col-md-9">
|
<div class="col-md-9">
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<select type="text" class="form-control" [(ngModel)]="categoryId">
|
<select type="text" class="form-control" [(ngModel)]="categoryId" size="6">
|
||||||
<option value="">Uncategorised</option>
|
<option value="">Uncategorised</option>
|
||||||
<option *ngFor="let category of categoryIdList, let i=index" [ngValue]="category" >
|
<option *ngFor="let category of categoryIdList, let i=index" [ngValue]="category" >
|
||||||
{{ categoryNameList[i] }}
|
{{ categoryNameList[i] }}
|
||||||
|
|
Reference in a new issue