Skip to content

Commit

Permalink
Use plain string value for the name
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Jan 25, 2021
1 parent bb77862 commit 85ddb61
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 @@ -28,7 +28,7 @@ func (r *Renderer) ApisList(apis []*management.ResourceServer) {
for _, api := range apis {
res = append(res, &apiView{
ID: auth0.StringValue(api.ID),
Name: appTypeFor(api.Name),
Name: auth0.StringValue(api.Name),
Identifier: auth0.StringValue(api.Identifier),
})
}
Expand Down

0 comments on commit 85ddb61

Please sign in to comment.