Skip to content

Commit

Permalink
chore: multi-input confirm prompt label
Browse files Browse the repository at this point in the history
  • Loading branch information
roger-king committed Jan 15, 2021
1 parent f22c562 commit c25ff60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prompts/multi_input.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func (m *MultiInput) Run() (string, error) {
answers = append(answers, result)

add := promptui.Select{
Label: "Add more? [Y",
Items: []string{"yes", "no"},
Label: "Add more?",
Items: []string{"no", "yes"},
}
_, confirm, err := add.Run()
if err != nil {
Expand Down

0 comments on commit c25ff60

Please sign in to comment.