bubble-table
bubble-table copied to clipboard
filtering is quitting when entered `q`
when the filter is on and entered q its quitting
this is expected, as when the filter is on (no more focused), the keys will impact the table (so hitting q will quit, esc will clear the filter, etc.)
if you wish to avoid it, you'll need to override the behaviour in your func (m *Model) Update(msg tea.Msg) (tea.Model, tea.Cmd) function.
This isn't inherent to the library, but the basic filter example was indeed broken in this way. Fixed, belatedly!