1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

fix(docker/images): check for empty tags EE-6256 (#10531)

This commit is contained in:
matias-portainer 2024-01-05 17:33:42 -03:00 committed by GitHub
parent 717f0978d9
commit 69271c9d59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ export interface ImagesListResponse {
nodeName?: string;
id: string;
size: number;
tags: string[];
tags?: string[];
/**
* Used is true if the image is used by at least one container.