Skip to content

Commit

Permalink
:closes: #934 Remove underscore from label plan
Browse files Browse the repository at this point in the history
  • Loading branch information
Khadreal committed Dec 12, 2024
1 parent e1cd33b commit 3531a0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/pricing-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
mon = datas.monthly_cost, // 4.99 (monthly)
quo = datas.quota, // 1000 (MB) - 5000 images (monthly/onetime)
cos = datas.cost, // 3.49 (onetime)
label = datas.label,
label = datas.label.replace(/_.*$/, ''),
name = -1 === quo ? 'Unlimited' : (quo >= 1000 ? quo / 1000 + ' GB' : quo + ' MB'),
pcs = 'monthly' === type ? {monthly: mon, yearly: Math.round(ann / 12 * 100) / 100} : cos,
pcsd = pcs, // Used if discount is active.
Expand Down
Loading

0 comments on commit 3531a0b

Please sign in to comment.