We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de85e28 commit 7c79080Copy full SHA for 7c79080
src/api/image-builder.ts
@@ -82,7 +82,7 @@ export function getImages(): Promise<any> {
82
const imgs = images.filter(image => {
83
if (image.RepoTags && image.RepoTags.length) {
84
const tag = image.RepoTags[0].split(':')[0];
85
- return imagesDir.indexOf(tag) !== -1;
+ return dirs.indexOf(tag) !== -1;
86
} else {
87
return false;
88
}
0 commit comments