()
| 379 | } |
| 380 | |
| 381 | func (m *multiSelectSearchField) Focus() tea.Cmd { |
| 382 | m.focused = true |
| 383 | if m.mode == msModeSearch { |
| 384 | return m.search.Focus() |
| 385 | } |
| 386 | return nil |
| 387 | } |
| 388 | |
| 389 | func (m *multiSelectSearchField) Blur() tea.Cmd { |
| 390 | m.focused = false |
no outgoing calls
no test coverage detected