Skip to content

Commit 10d4b29

Browse files
committed
Add LowPrefix to Empty style, move to beginning of list
1 parent 2e4ee08 commit 10d4b29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/minikube/console/style.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ type style struct {
4949
// styles is a map of style name to style struct
5050
// For consistency, ensure that emojis added render with the same width across platforms.
5151
var styles = map[StyleEnum]style{
52+
Empty: {Prefix: "", LowPrefix: ""},
5253
Happy: {Prefix: "😄 "},
5354
SuccessType: {Prefix: "✅ "},
5455
FailureType: {Prefix: "❌ "},
@@ -79,7 +80,6 @@ var styles = map[StyleEnum]style{
7980
Issue: {Prefix: " ▪ ", LowPrefix: lowIndent}, // Indented bullet
8081
Check: {Prefix: "✔️ "},
8182
Celebration: {Prefix: "🎉 "},
82-
Empty: {Prefix: ""},
8383

8484
// Specialized purpose styles
8585
ISODownload: {Prefix: "💿 "},

0 commit comments

Comments
 (0)