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" "time"
"github.com/OpenPeeDeeP/xdg" "github.com/OpenPeeDeeP/xdg"
yaml "github.com/jesseduffield/yaml" "github.com/jesseduffield/yaml"
) )
// UserConfig holds all of the user-configurable options // UserConfig holds all of the user-configurable options
@ -327,9 +327,9 @@ func GetDefaultConfig() UserConfig {
InactiveBorderColor: []string{"default"}, InactiveBorderColor: []string{"default"},
OptionsTextColor: []string{"blue"}, OptionsTextColor: []string{"blue"},
}, },
ShowAllContainers: false, ShowAllContainers: false,
ReturnImmediately: false, ReturnImmediately: false,
WrapMainPanel: false, WrapMainPanel: false,
SortContainersByName: false, SortContainersByName: false,
}, },
Reporting: "undetermined", 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) link := fmt.Sprintf("http://%s:%d/", ip, port.PublicPort)
return gui.OSCommand.OpenLink(link) return gui.OSCommand.OpenLink(link)
} }