'coins will no longer show double minus sign for negative changes
This commit is contained in:
parent
668d9e4734
commit
db83e6abc2
1 changed files with 1 additions and 1 deletions
|
@ -238,6 +238,6 @@ public partial class Searches
|
|||
=> value > 0 ? "▲" : "▼";
|
||||
|
||||
private static string GetSign(decimal value)
|
||||
=> value >= 0 ? "+" : "-";
|
||||
=> value >= 0 ? "+" : "";
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue