Skip to content

Commit

Permalink
UI: Overview search: trigger on every input change (#2935)
Browse files Browse the repository at this point in the history
* Fix Search gets only Fired when "Enter" is pressed
  • Loading branch information
Sn0w3y authored Jan 4, 2025
1 parent ba4bd63 commit 2574b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/index/overview/overview.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<ion-col>
<ion-searchbar
style="--background: var(--ion-color-searchbar-background); color:var(--ion-color-searchbar-text);"
[(ngModel)]="query" (ionChange)="searchOnChange()">
[(ngModel)]="query" (ionInput)="searchOnChange()">
</ion-searchbar>
</ion-col>
</ion-row>
Expand Down

0 comments on commit 2574b22

Please sign in to comment.