Skip to content

Commit

Permalink
Make the ID display faintly
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Jan 25, 2021
1 parent d77eece commit bb77862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/display/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func (v *apiView) AsTableHeader() []string {
}

func (v *apiView) AsTableRow() []string {
return []string{v.ID, v.Name, ansi.Faint(v.Identifier)}
return []string{ansi.Faint(v.ID), v.Name, v.Identifier}
}

func (r *Renderer) ApisList(apis []*management.ResourceServer) {
Expand Down

0 comments on commit bb77862

Please sign in to comment.