Skip to content

Commit

Permalink
fix: missing docker image name, when using docker tag name as source (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
saemik94 authored Aug 2, 2023
1 parent f112051 commit a28fb73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widgets/images/imageList.widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class myWidget extends ListWidget {

imageList.push([
image.Id.substring(7, 12),
(image.RepoDigests && image.RepoDigests.length) ? image.RepoDigests[0].split('@')[0] : getTag(image[2], 0),
(image.RepoDigests && image.RepoDigests.length) ? image.RepoDigests[0].split('@')[0] : getTag(image['RepoTags'], 0),
getTag(image.RepoTags, 1),
this.timeDifference(image.Created),
this.formatBytes(image.Size)
Expand Down

0 comments on commit a28fb73

Please sign in to comment.