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
|
var selectedFolder *api.Folder
|
||||||
for selectedFolder == nil {
|
for selectedFolder == nil {
|
||||||
pterm.DefaultTable.WithHasHeader().WithData(data).Render()
|
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
|
var cliInput string
|
||||||
fmt.Scanln(&cliInput)
|
fmt.Scanln(&cliInput)
|
||||||
if cliInput == "c" {
|
if cliInput == "c" {
|
||||||
|
|
|
@ -137,7 +137,7 @@ func choseResourceEntry(resources *[]api.Resource) (*api.Resource, error) {
|
||||||
var selectedResource *api.Resource
|
var selectedResource *api.Resource
|
||||||
for selectedResource == nil {
|
for selectedResource == nil {
|
||||||
pterm.DefaultTable.WithHasHeader().WithData(data).Render()
|
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
|
var cliInput string
|
||||||
fmt.Scanln(&cliInput)
|
fmt.Scanln(&cliInput)
|
||||||
if cliInput == "c" {
|
if cliInput == "c" {
|
||||||
|
|
Loading…
Add table
Reference in a new issue