auth filter status fix

This commit is contained in:
sepehr 2024-08-09 16:28:42 +03:30
parent d8434b5fec
commit f4c785f7f1

View file

@ -45,12 +45,17 @@
<mat-select placeholder="State" (ngModelChange)="reinitgrid('state',$event)"
[(ngModel)]="filters['state']" #multiSelect>
<mat-option value="All">All</mat-option>
<mat-option *ngFor="let ac of ['Logged In','Logged Out','Failed']" [value]="ac">
{{ac}}
<mat-option value="loggedin">
Logged In
</mat-option>
<mat-option value="loggedout">
Logged Out
</mat-option>
<mat-option value="failed">
Failed
</mat-option>
</mat-select>
</mat-form-field >
<mat-form-field>
<mat-label>Server</mat-label>
<mat-select placeholder="Server" (ngModelChange)="reinitgrid('server',$event)"