- commit
- d6f553a
- parent
- 0d69224
- author
- Eric Bower
- date
- 2025-12-20 11:39:43 -0500 EST
fix(tui/access_logs): set cursor to 0 when filtering
1 files changed,
+1,
-1
+1,
-1
1@@ -72,7 +72,7 @@ func (m *AccessLogsPage) filterLogs() {
2 m.filtered = filtered
3
4 if len(filtered) > 0 {
5- m.list.SetCursor(uint(len(filtered) - 1))
6+ m.list.SetCursor(0)
7 }
8 }
9