fix: use select control for role filter

This commit is contained in:
bisco
2026-06-03 23:10:00 +02:00
parent 03b8762835
commit 8909be9694
3 changed files with 50 additions and 6 deletions
+4 -6
View File
@@ -39,12 +39,10 @@
</label>
<label>
Role
<input
type="text"
[(ngModel)]="filters.role"
(ngModelChange)="onFilterChange()"
placeholder="3 and D, handler, rim runner"
>
<select [(ngModel)]="filters.role" (ngModelChange)="onFilterChange()">
<option value="">Any</option>
<option *ngFor="let role of roles" [value]="role">{{ role }}</option>
</select>
</label>
<label>
League