Fixing gofmt errors

This commit is contained in:
lpessoa 2021-12-10 16:39:42 +00:00
parent 14e6ff1c1f
commit 1681d839fa
2 changed files with 4 additions and 5 deletions

View file

@ -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",

View file

@ -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)
}