Add LowPrefix to Empty style, move to beginning of list

pull/4809/head
tstromberg 2019-07-18 13:01:00 -07:00
parent 2e4ee0843c
commit 10d4b295f3
1 changed files with 1 additions and 1 deletions

View File

@ -49,6 +49,7 @@ type style struct {
// styles is a map of style name to style struct
// For consistency, ensure that emojis added render with the same width across platforms.
var styles = map[StyleEnum]style{
Empty: {Prefix: "", LowPrefix: ""},
Happy: {Prefix: "😄 "},
SuccessType: {Prefix: "✅ "},
FailureType: {Prefix: "❌ "},
@ -79,7 +80,6 @@ var styles = map[StyleEnum]style{
Issue: {Prefix: " ▪ ", LowPrefix: lowIndent}, // Indented bullet
Check: {Prefix: "✔️ "},
Celebration: {Prefix: "🎉 "},
Empty: {Prefix: ""},
// Specialized purpose styles
ISODownload: {Prefix: "💿 "},