()
| 709 | } |
| 710 | |
| 711 | func (m multiSelectModel) selectedOptions() []string { |
| 712 | selected := []string{} |
| 713 | for _, o := range m.options { |
| 714 | if o.chosen { |
| 715 | selected = append(selected, o.option) |
| 716 | } |
| 717 | } |
| 718 | return selected |
| 719 | } |
no outgoing calls
no test coverage detected