Skip to content

Commit e373639

Browse files
authored
Merge pull request #4809 from tstromberg/template2
Add LowPrefix to Empty style, move to beginning of list
2 parents 45974d9 + 10d4b29 commit e373639

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)