Skip to content

Commit

Permalink
feat: fctl displaying for easy copy
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ragot committed Dec 22, 2023
1 parent 821df06 commit 278c9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/fctl/cmd/auth/clients/views/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func PrintClient(out io.Writer, client *shared.Client) error {
tableData = append(tableData, []string{pterm.LightCyan("Description"), fctl.StringPointerToString(client.Description)})
tableData = append(tableData, []string{pterm.LightCyan("Public"), fctl.BoolPointerToString(client.Public)})
if len(client.Scopes) > 0 {
tableData = append(tableData, []string{pterm.LightCyan("Scopes"), strings.Join(client.Scopes, ", ")})
tableData = append(tableData, []string{pterm.LightCyan("Scopes"), strings.Join(client.Scopes, " ")})
}

fctl.Section.WithWriter(out).Println("Information :")
Expand Down

0 comments on commit 278c9f7

Please sign in to comment.