Skip to content

Commit

Permalink
Merge branch 'fix-select-page-size' of github.com:auth0/auth0-cli int…
Browse files Browse the repository at this point in the history
…o fix-select-page-size
  • Loading branch information
jfatta committed Mar 15, 2021
2 parents 7da683a + 3eb49bc commit f191f21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/cli/apps_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestClientsListCmd(t *testing.T) {
expectTable(t, stdout.String(),
[]string{"CLIENT ID", "NAME", "TYPE"},
[][]string{
{"some-name", "generic", "some-id"},
{"some-id", "some-name", "generic"},
},
)
}
4 changes: 2 additions & 2 deletions internal/display/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,16 +142,16 @@ func (v *applicationListView) AsTableHeader() []string {
func (v *applicationListView) AsTableRow() []string {
if v.revealSecret {
return []string{
ansi.Faint(v.ClientID),
v.Name,
v.Type,
ansi.Faint(v.ClientID),
ansi.Italic(v.ClientSecret),
}
}
return []string{
ansi.Faint(v.ClientID),
v.Name,
v.Type,
ansi.Faint(v.ClientID),
}
}

Expand Down

0 comments on commit f191f21

Please sign in to comment.