Skip to content

Commit

Permalink
feat(io): keep filter for region and runtime selection active (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
go-to-k committed Dec 22, 2023
1 parent 4cd3bd8 commit 670d7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/io/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func GetCheckboxes(label string, opts []string) ([]string, bool) {
Options: opts,
PageSize: CheckboxesPageSize,
}
survey.AskOne(prompt, &checkboxes)
survey.AskOne(prompt, &checkboxes, survey.WithKeepFilter(true))

if len(checkboxes) == 0 {
Logger.Warn().Msg("Select values!")
Expand Down

0 comments on commit 670d7f1

Please sign in to comment.