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:
parent
afe49de9c2
commit
2c81e94f74
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
Loading…
Add table
Reference in a new issue