File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
src/app/account-transfers/make-account-transfers Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ <h3 class="section-title transfer-heading">{{ 'labels.heading.Transferred To' |
8787 < mat-divider *ngIf ="!interbank "> </ mat-divider >
8888
8989 <!-- Transfer Form Section -->
90- < form *ngIf ="!interbank " [formGroup] ="makeAccountTransferForm " class ="transfer-form ">
90+ < form *ngIf ="!interbank " [formGroup] ="makeAccountTransferForm " class ="transfer-form " (ngSubmit) =" submit() " >
9191 < h3 class ="section-title transfer-heading "> {{ 'labels.heading.Transfer Details' | translate }}</ h3 >
9292
9393 < div class ="form-grid ">
@@ -207,6 +207,14 @@ <h3 class="section-title transfer-heading">{{ 'labels.heading.Transfer Details'
207207 </ mat-error >
208208 </ mat-form-field >
209209 </ div >
210+ < mat-card-actions class ="layout-row layout-xs-column layout-align-center gap-5px ">
211+ < button type ="button " mat-raised-button [routerLink] ="['../../transactions'] ">
212+ {{ 'labels.buttons.Cancel' | translate }}
213+ </ button >
214+ < button mat-raised-button color ="primary " [disabled] ="!makeAccountTransferForm.valid ">
215+ {{ 'labels.buttons.Submit' | translate }}
216+ </ button >
217+ </ mat-card-actions >
210218 </ form >
211219 < mifosx-make-account-interbank-transfers
212220 *ngIf ="interbank && interbankTransferForm "
You can’t perform that action at this time.
0 commit comments