From 52e629b69a9608bc61dbc63ab343d2d14a086368 Mon Sep 17 00:00:00 2001 From: Alexis ANNEIX Date: Thu, 1 Feb 2024 16:43:52 +0100 Subject: [PATCH] Show containers IPv4Address in network --- pkg/gui/networks_panel.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/networks_panel.go b/pkg/gui/networks_panel.go index 4702d35d..9b306e37 100644 --- a/pkg/gui/networks_panel.go +++ b/pkg/gui/networks_panel.go @@ -67,7 +67,7 @@ func (gui *Gui) networkConfigStr(network *commands.Network) string { if len(network.Network.Containers) > 0 { output += "\n" for _, v := range network.Network.Containers { - output += utils.FormatMapItem(padding, v.Name, v.EndpointID) + output += utils.FormatMapItem(padding, v.Name, v.IPv4Address) } } else { output += "none\n"