Skip to content

Commit cb72a66

Browse files
committed
remove comments
1 parent 6e24d0f commit cb72a66

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

web-app/admin/src/ng1/admin/events/events.component.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,17 @@ class AdminEventsController {
4949
}
5050

5151
handleSearchChange() {
52-
// Debounce search to avoid too many requests
5352
if (this.searchTimeout) {
5453
clearTimeout(this.searchTimeout);
5554
}
5655
this.searchTimeout = setTimeout(() => {
57-
this.page = 0; // Reset to first page on search
56+
this.page = 0;
5857
this.loadEvents();
5958
}, 300);
6059
}
6160

6261
handleFilterChange() {
63-
this.page = 0; // Reset to first page on filter change
62+
this.page = 0;
6463
this.loadEvents();
6564
}
6665

0 commit comments

Comments
 (0)