'coins will no longer show double minus sign for negative changes

This commit is contained in:
Toastie 2024-07-16 22:30:23 +12:00
parent 668d9e4734
commit db83e6abc2
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4

View file

@ -238,6 +238,6 @@ public partial class Searches
=> value > 0 ? "▲" : "▼"; => value > 0 ? "▲" : "▼";
private static string GetSign(decimal value) private static string GetSign(decimal value)
=> value >= 0 ? "+" : "-"; => value >= 0 ? "+" : "";
} }
} }