mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-06-28 15:09:37 +00:00
Correct wrong uppercase in message of choosing
entry
This commit is contained in:
parent
c02b368c0d
commit
06f9466c8f
2 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ func choseFolderEntry(folders *[]api.Folder) (*api.Folder, error) {
|
|||
var selectedFolder *api.Folder
|
||||
for selectedFolder == nil {
|
||||
pterm.DefaultTable.WithHasHeader().WithData(data).Render()
|
||||
fmt.Print("Please chose an index of Resource (c to abbort): ")
|
||||
fmt.Print("Please chose an index of folder (c to abbort): ")
|
||||
var cliInput string
|
||||
fmt.Scanln(&cliInput)
|
||||
if cliInput == "c" {
|
||||
|
|
|
@ -137,7 +137,7 @@ func choseResourceEntry(resources *[]api.Resource) (*api.Resource, error) {
|
|||
var selectedResource *api.Resource
|
||||
for selectedResource == nil {
|
||||
pterm.DefaultTable.WithHasHeader().WithData(data).Render()
|
||||
fmt.Print("Please chose an index of Resource (c to abbort): ")
|
||||
fmt.Print("Please chose an index of resource (c to abbort): ")
|
||||
var cliInput string
|
||||
fmt.Scanln(&cliInput)
|
||||
if cliInput == "c" {
|
||||
|
|
Loading…
Add table
Reference in a new issue