We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e24d0f commit cb72a66Copy full SHA for cb72a66
web-app/admin/src/ng1/admin/events/events.component.js
@@ -49,18 +49,17 @@ class AdminEventsController {
49
}
50
51
handleSearchChange() {
52
- // Debounce search to avoid too many requests
53
if (this.searchTimeout) {
54
clearTimeout(this.searchTimeout);
55
56
this.searchTimeout = setTimeout(() => {
57
- this.page = 0; // Reset to first page on search
+ this.page = 0;
58
this.loadEvents();
59
}, 300);
60
61
62
handleFilterChange() {
63
- this.page = 0; // Reset to first page on filter change
64
65
66
0 commit comments