🐛 Fixed missing currency for yearly plan in Labs subscription price settings (#1626)

no-issue
This commit is contained in:
Matt Hanley 2020-07-02 11:36:32 +01:00 committed by GitHub
parent be0a6d58a0
commit 43419275ac

View File

@ -98,7 +98,7 @@ export default Component.extend({
}, },
yearly: { yearly: {
amount: parseInt(yearly.amount) / 100 || 0, amount: parseInt(yearly.amount) / 100 || 0,
yearly: yearly.currency currency: yearly.currency
} }
}; };
}), }),