Skip to content

Commit

Permalink
fix: switch high and low in day range
Browse files Browse the repository at this point in the history
  • Loading branch information
achannarasappa committed Feb 24, 2021
1 parent dc486cc commit 47dc87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ui/component/watchlist/watchlist.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func dayRangeText(high float64, low float64, isVariablePrecision bool) string {
if high == 0.0 || low == 0.0 {
return ""
}
return StyleNeutralFaded("Day Range: ") + StyleNeutral(ConvertFloatToString(high, isVariablePrecision)+" - "+ConvertFloatToString(low, isVariablePrecision))
return StyleNeutralFaded("Day Range: ") + StyleNeutral(ConvertFloatToString(low, isVariablePrecision)+" - "+ConvertFloatToString(high, isVariablePrecision))
}

func exchangeDelayText(delay float64) string {
Expand Down

0 comments on commit 47dc87b

Please sign in to comment.