Fix currency symbol being hardcoded to $

This commit is contained in:
Svilen Markov
2024-04-29 22:32:46 +01:00
parent 189b8895b0
commit d5d6103327
3 changed files with 38 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
<div class="stock-values shrink-0">
<div class="size-h3 text-right {{ if eq .PercentChange 0.0 }}{{ else if gt .PercentChange 0.0 }}color-positive{{ else }}color-negative{{ end }}">{{ printf "%+.2f" .PercentChange }}%</div>
<div class="text-right">${{ .Price | formatPrice }}</div>
<div class="text-right">{{ .Currency }}{{ .Price | formatPrice }}</div>
</div>
</li>
{{ end }}