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

Fixed discount bug

- fixes bug so that negative discount values won't be showen on tier cards.
This commit is contained in:
Peter Zimon 2022-03-23 13:36:40 +01:00
parent afe49de9c2
commit 2c81e94f74

View file

@ -3,7 +3,8 @@ function calculateDiscount(monthly, yearly) {
return 0;
}
return monthly ? 100 - Math.floor((yearly / 12 * 100) / monthly) : 0;
const discount = monthly ? 100 - Math.floor((yearly / 12 * 100) / monthly) : 0;
return (discount >= 1 && discount < 100) ? discount : 0;
}
module.exports = calculateDiscount;