From a78b5af56bf3e37653ee1c29d515657d9e1614ef Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Wed, 12 Jan 2022 23:24:15 +1100 Subject: [PATCH] fix crash --- pkg/config/app_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go index e0988f78..9d063d83 100644 --- a/pkg/config/app_config.go +++ b/pkg/config/app_config.go @@ -116,7 +116,7 @@ type GuiConfig struct { // SortContainersByName determines if containers should be sorted by name. // By default, containers are now sorted by status. This setting allows users to // use legacy behaviour instead. - SortContainersByName bool `yaml:"sortContainersByName, omitempty"` + SortContainersByName bool `yaml:"sortContainersByName,omitempty"` } // CommandTemplatesConfig determines what commands actually get called when we