Skip to content

Commit

Permalink
feat: replaced some unicode symbols with more widely support versions
Browse files Browse the repository at this point in the history
  • Loading branch information
achannarasappa committed Feb 14, 2021
1 parent 31d6e7d commit e1d5549
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions internal/ui/component/watchlist/watchlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func separator(isSeparated bool, width int) string {
return "\n" + Line(
width,
Cell{
Text: StyleLine(strings.Repeat("", width)),
Text: StyleLine(strings.Repeat("", width)),
},
) + "\n"
}
Expand Down Expand Up @@ -179,11 +179,11 @@ func tagText(text string) string {

func marketStateText(q Quote) string {
if q.IsRegularTradingSession {
return StyleNeutralFaded(" ⦿ ")
return StyleNeutralFaded(" ")
}

if !q.IsRegularTradingSession && q.IsActive {
return StyleNeutralFaded(" ")
return StyleNeutralFaded(" ")
}

return ""
Expand Down
2 changes: 1 addition & 1 deletion internal/ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func footer(width int, time string) string {
Text: styleHelp("q: exit ↑: scroll up ↓: scroll down"),
},
Cell{
Text: styleHelp(" " + time),
Text: styleHelp(" " + time),
Align: RightAlign,
},
)
Expand Down

0 comments on commit e1d5549

Please sign in to comment.