0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Added a thousands separator to tier price on member detail screen

ref https://linear.app/tryghost/issue/DES-152/thousand-separator-missing-in-member-details-tier-price
This commit is contained in:
Djordje Vlaisavljevic 2024-03-21 14:50:19 +00:00
parent ba7f448e12
commit 5e631114db

View file

@ -115,7 +115,7 @@
<div class="gh-tier-card-price">
<div class="flex items-start">
<span class="currency-symbol">{{sub.price.currencySymbol}}</span>
<span class="amount">{{sub.price.nonDecimalAmount}}</span>
<span class="amount">{{format-number sub.price.nonDecimalAmount}}</span>
</div>
<div class="period">{{if (eq sub.price.interval "year") "yearly" "monthly"}}</div>
</div>