(options []string, target string)
| 261 | } |
| 262 | |
| 263 | func indexOfOption(options []string, target string) int { |
| 264 | for i, option := range options { |
| 265 | if strings.EqualFold(option, target) { |
| 266 | return i |
| 267 | } |
| 268 | } |
| 269 | return 0 |
| 270 | } |
| 271 | |
| 272 | // showAdvancedGuestFilterModal displays structured filters for the Guests page. |
| 273 | func (a *App) showAdvancedGuestFilterModal() { |
no outgoing calls
no test coverage detected