1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 14:31:44 +01:00

fix: fixes broken image tag in title bar (#3176)

This commit is contained in:
Amir Raminfar
2024-08-02 17:24:18 -07:00
committed by GitHub
parent db1cccc61f
commit b38a02f5ba
8 changed files with 6 additions and 16 deletions

View File

@@ -246,7 +246,6 @@ func (c *Client) StreamNewContainers(ctx context.Context, containers chan<- dock
Image: resp.Container.Image,
Labels: resp.Container.Labels,
Group: resp.Container.Group,
ImageID: resp.Container.ImageId,
Created: resp.Container.Created.AsTime(),
State: resp.Container.State,
Health: resp.Container.Health,
@@ -281,7 +280,6 @@ func (c *Client) FindContainer(containerID string) (docker.Container, error) {
Image: response.Container.Image,
Labels: response.Container.Labels,
Group: response.Container.Group,
ImageID: response.Container.ImageId,
Created: response.Container.Created.AsTime(),
State: response.Container.State,
Health: response.Container.Health,
@@ -317,7 +315,6 @@ func (c *Client) ListContainers() ([]docker.Container, error) {
Image: container.Image,
Labels: container.Labels,
Group: container.Group,
ImageID: container.ImageId,
Created: container.Created.AsTime(),
State: container.State,
Health: container.Health,