Skip to content

Commit

Permalink
Merge pull request #7131 from rhafer/image_search_descr
Browse files Browse the repository at this point in the history
Fix `podman image search` missing description
  • Loading branch information
openshift-merge-robot authored Jul 29, 2020
2 parents 83166a9 + cf5c63b commit 7f38774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/domain/infra/abi/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ func (ir *ImageEngine) Search(ctx context.Context, term string, opts entities.Im
for i := range searchResults {
reports[i].Index = searchResults[i].Index
reports[i].Name = searchResults[i].Name
reports[i].Description = searchResults[i].Index
reports[i].Description = searchResults[i].Description
reports[i].Stars = searchResults[i].Stars
reports[i].Official = searchResults[i].Official
reports[i].Automated = searchResults[i].Automated
Expand Down

0 comments on commit 7f38774

Please sign in to comment.