From 1681d839fa2818031b2246db772e4ffdf684a20b Mon Sep 17 00:00:00 2001 From: lpessoa Date: Fri, 10 Dec 2021 16:39:42 +0000 Subject: [PATCH] Fixing gofmt errors --- pkg/config/app_config.go | 8 ++++---- pkg/gui/containers_panel.go | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index 2c984087..e0988f78 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -20,7 +20,7 @@ import ( "time" "github.com/OpenPeeDeeP/xdg" - yaml "github.com/jesseduffield/yaml" + "github.com/jesseduffield/yaml" ) // UserConfig holds all of the user-configurable options @@ -327,9 +327,9 @@ func GetDefaultConfig() UserConfig { InactiveBorderColor: []string{"default"}, OptionsTextColor: []string{"blue"}, }, - ShowAllContainers: false, - ReturnImmediately: false, - WrapMainPanel: false, + ShowAllContainers: false, + ReturnImmediately: false, + WrapMainPanel: false, SortContainersByName: false, }, Reporting: "undetermined", diff --git a/pkg/gui/containers_panel.go b/pkg/gui/containers_panel.go index 0b6c04a2..7b8a172e 100644 --- a/pkg/gui/containers_panel.go +++ b/pkg/gui/containers_panel.go @@ -618,4 +618,3 @@ func (gui *Gui) openContainerInBrowser(container *commands.Container) error { link := fmt.Sprintf("http://%s:%d/", ip, port.PublicPort) return gui.OSCommand.OpenLink(link) } -