Allow all cases in case list

This commit is contained in:
Amritanshu Agrawal 2021-01-21 08:41:48 +05:30
parent 211b076d2b
commit 405230a32d
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@
<mat-form-field fxFlex>
<mat-label>Case Source</mat-label>
<mat-select placeholder="Case Source" formControlName="caseSource">
<mat-option value=""> -- All Types --</mat-option>
<mat-option *ngFor="let cs of caseSources" [value]="cs.id">
{{ cs.name }}
</mat-option>