Skip to content

Commit

Permalink
fix(images): fixed bug of not showing docker images
Browse files Browse the repository at this point in the history
closes #242
  • Loading branch information
Izak88 committed Oct 19, 2017
1 parent de85e28 commit 7c79080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/image-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function getImages(): Promise<any> {
const imgs = images.filter(image => {
if (image.RepoTags && image.RepoTags.length) {
const tag = image.RepoTags[0].split(':')[0];
return imagesDir.indexOf(tag) !== -1;
return dirs.indexOf(tag) !== -1;
} else {
return false;
}
Expand Down

0 comments on commit 7c79080

Please sign in to comment.