mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-21 23:01:03 +00:00
Run gofmt on container.go
This commit is contained in:
parent
305b9630a0
commit
0c2edc7c22
1 changed files with 1 additions and 1 deletions
|
|
@ -261,7 +261,7 @@ func (c *Container) GetDisplayStatus() string {
|
|||
state += " (" + strconv.Itoa(c.Details.State.ExitCode) + ")"
|
||||
}
|
||||
if c.Container.State == "running" && c.Details.State.Health.Status != "" {
|
||||
state += " (" + c.Details.State.Health.Status + ")";
|
||||
state += " (" + c.Details.State.Health.Status + ")"
|
||||
}
|
||||
if c.Container.State == "running" && c.Details.State.Health.Status == "unhealthy" {
|
||||
return utils.MultiColoredString(state, c.GetColor(), color.BgRed)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue