diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-07-29 07:49:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-29 07:49:49 -0400 |
commit | 7f38774ee7758e56cf31e87c81ae0bc9208d0ede (patch) | |
tree | 99279e3b8a75c2cc0837c508b309d54f7c215e37 /pkg | |
parent | 83166a98c3cdb3fc88e239772430cfcb3f28c3b0 (diff) | |
parent | cf5c63b5c492e41d72b6e3b6d75b5f39b0a957fd (diff) | |
download | podman-7f38774ee7758e56cf31e87c81ae0bc9208d0ede.tar.gz podman-7f38774ee7758e56cf31e87c81ae0bc9208d0ede.tar.bz2 podman-7f38774ee7758e56cf31e87c81ae0bc9208d0ede.zip |
Merge pull request #7131 from rhafer/image_search_descr
Fix `podman image search` missing description
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/domain/infra/abi/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/images.go b/pkg/domain/infra/abi/images.go index 10ec7f8f3..05adc40fe 100644 --- a/pkg/domain/infra/abi/images.go +++ b/pkg/domain/infra/abi/images.go @@ -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 |