mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-08 02:52:39 -05:00
Fixed default currency for new tier creation
no refs
This commit is contained in:
parent
ea71e2a653
commit
941d4de4af
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export default class ModalProductPrice extends ModalBase {
|
|||
if (yearlyPrice) {
|
||||
this.stripeYearlyAmount = (yearlyPrice.amount / 100);
|
||||
}
|
||||
this.currency = this.productCurrency;
|
||||
this.currency = this.productCurrency || 'usd';
|
||||
this.benefits = this.product.get('benefits') || emberA([]);
|
||||
this.newBenefit = ProductBenefitItem.create({
|
||||
isNew: true,
|
||||
|
|
Loading…
Add table
Reference in a new issue