()
| 367 | } |
| 368 | |
| 369 | func (m *multiSelectSearchField) Focus() tea.Cmd { |
| 370 | m.focused = true |
| 371 | if m.mode == msModeSearch { |
| 372 | return m.search.Focus() |
| 373 | } |
| 374 | return nil |
| 375 | } |
| 376 | |
| 377 | func (m *multiSelectSearchField) Blur() tea.Cmd { |
| 378 | m.focused = false |
no outgoing calls
no test coverage detected