Skip to content

Commit

Permalink
fix: app picker needs to also ignore lifetime in seconds (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyx committed Apr 30, 2021
1 parent 40a355b commit 4a3ff01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ func interfaceToStringSlice(s []interface{}) []string {
}

func (c *cli) appPickerOptions() (pickerOptions, error) {
list, err := c.api.Client.List()
list, err := c.api.Client.List(management.ExcludeFields(clientExcludedList...))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 4a3ff01

Please sign in to comment.