Skip to content

Commit

Permalink
fix: increased prompt select size
Browse files Browse the repository at this point in the history
  • Loading branch information
arnold-keyvalue committed Aug 25, 2022
1 parent 32e8a72 commit 7514c70
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ func getProject() string {
prompt := promptui.Select{
Label: "Select GCP Project",
Items: proj_id,
Size: 10,
}

_, result, err := prompt.Run()
Expand Down Expand Up @@ -89,6 +90,7 @@ func getInstance() string {
prompt := promptui.Select{
Label: "Select instance to connect",
Items: instancelist,
Size: 10,
}

_, result, err := prompt.Run()
Expand Down

0 comments on commit 7514c70

Please sign in to comment.