We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62acfd6 commit 82a2927Copy full SHA for 82a2927
1 file changed
src/app/loans/loans-view/loan-account-actions/undo-disbursal/undo-disbursal.component.html
@@ -13,6 +13,12 @@
13
<mat-form-field class="flex-fill">
14
<mat-label>{{ 'labels.inputs.Note' | translate }}</mat-label>
15
<textarea matInput required [formControl]="note" cdkTextareaAutosize cdkAutosizeMinRows="2"></textarea>
16
+ @if (note.hasError('required')) {
17
+ <mat-error>
18
+ {{ 'labels.inputs.Note' | translate }} {{ 'labels.commons.is' | translate }}
19
+ <strong>{{ 'labels.commons.required' | translate }}</strong>
20
+ </mat-error>
21
+ }
22
</mat-form-field>
23
</div>
24
0 commit comments