fix: .coins will no longer show double minus sign for negative changes

This commit is contained in:
Kwoth
2024-07-14 13:38:56 +00:00
parent 7bd081b7cf
commit d3ab32a7ac

View File

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