1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 22:39:18 +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

@@ -180,7 +180,6 @@ func (s *server) FindContainer(ctx context.Context, in *pb.FindContainerRequest)
Id: container.ID,
Name: container.Name,
Image: container.Image,
ImageId: container.ImageID,
Command: container.Command,
Created: timestamppb.New(container.Created),
State: container.State,
@@ -217,7 +216,6 @@ func (s *server) ListContainers(ctx context.Context, in *pb.ListContainersReques
Id: container.ID,
Name: container.Name,
Image: container.Image,
ImageId: container.ImageID,
Created: timestamppb.New(container.Created),
State: container.State,
Health: container.Health,
@@ -263,7 +261,6 @@ func (s *server) StreamContainerStarted(in *pb.StreamContainerStartedRequest, ou
Id: container.ID,
Name: container.Name,
Image: container.Image,
ImageId: container.ImageID,
Created: timestamppb.New(container.Created),
State: container.State,
Health: container.Health,