Skip to content

Commit 7c79080

Browse files
committed
fix(images): fixed bug of not showing docker images
closes #242
1 parent de85e28 commit 7c79080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/image-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function getImages(): Promise<any> {
8282
const imgs = images.filter(image => {
8383
if (image.RepoTags && image.RepoTags.length) {
8484
const tag = image.RepoTags[0].split(':')[0];
85-
return imagesDir.indexOf(tag) !== -1;
85+
return dirs.indexOf(tag) !== -1;
8686
} else {
8787
return false;
8888
}

0 commit comments

Comments
 (0)