</button>
</div>
<div class="modal-body" [hidden]="!doneLoading">
- <form #xfrForm="ngForm" role="form" class="form-validated">
+ <form #xfrForm="ngForm" role="form" class="form-validated common-form striped-odd">
<div class="form-group row mt-2">
<label for="dest-fund" class="col-sm-4 col-form-label" i18n>Destination Fund</label>
<div class="col-sm-8">
<eg-combobox #fundSelector [asyncSupportsEmptyTermClick]="true"
- name="dest_fund" id="dest-fund"
+ name="dest_fund" id="dest-fund" [mandatory]="true"
[(ngModel)]="destFund" [asyncDataSource]="fundDataSource"
i18n-placeholder placeholder="Select fund..."></eg-combobox>
</div>
<div class="form-group row">
<label for="source_amount" class="col-sm-4 col-form-label" i18n>Source Amount</label>
<div class="col-sm-8">
- <input class="form-control" type="number" name="source_amount" id="source_amount" [(ngModel)]="sourceAmount">
+ <input class="form-control" type="number" name="source_amount" id="source_amount" [(ngModel)]="sourceAmount" required>
</div>
</div>
<div class="form-group row">