mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Fixed members plan currency symbol
no issue The refactor to new settings lost the uppercasing of the currency string, this puts it back
This commit is contained in:
parent
173e3292fa
commit
c5d360e647
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class MembersConfigProvider {
|
|||
}, {});
|
||||
|
||||
priceData.currency = plans[0].currency || 'USD';
|
||||
priceData.currency_symbol = CURRENCY_SYMBOLS[priceData.currency];
|
||||
priceData.currency_symbol = CURRENCY_SYMBOLS[priceData.currency.toUpperCase()];
|
||||
|
||||
if (Number.isInteger(priceData.monthly) && Number.isInteger(priceData.yearly)) {
|
||||
return priceData;
|
||||
|
|
Loading…
Add table
Reference in a new issue