fix: accept all characters when filtering

This commit is contained in:
2026-03-14 23:14:21 +02:00
parent 68ea034ad8
commit 0f67db342f

View File

@@ -355,7 +355,7 @@ func (m *model) handleKeyPress(msg tea.KeyMsg) (tea.Model, tea.Cmd) {
}
return m, nil
default:
if msg.Type == tea.KeyRunes {
if len(msg.Runes) > 0 {
m.filter += string(msg.Runes)
m.updateFiltered()
}