We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 45974d9 + 10d4b29 commit e373639Copy full SHA for e373639
pkg/minikube/console/style.go
@@ -49,6 +49,7 @@ type style struct {
49
// styles is a map of style name to style struct
50
// For consistency, ensure that emojis added render with the same width across platforms.
51
var styles = map[StyleEnum]style{
52
+ Empty: {Prefix: "", LowPrefix: ""},
53
Happy: {Prefix: "😄 "},
54
SuccessType: {Prefix: "✅ "},
55
FailureType: {Prefix: "❌ "},
@@ -79,7 +80,6 @@ var styles = map[StyleEnum]style{
79
80
Issue: {Prefix: " ▪ ", LowPrefix: lowIndent}, // Indented bullet
81
Check: {Prefix: "✔️ "},
82
Celebration: {Prefix: "🎉 "},
- Empty: {Prefix: ""},
83
84
// Specialized purpose styles
85
ISODownload: {Prefix: "💿 "},
0 commit comments