Merge pull request #329 from Safelite/feature/digital/SSR-499
Adding + to front of prices on service packages page
This commit is contained in:
commit
2815d88858
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@
|
||||||
},
|
},
|
||||||
getPackagePriceString(packageName) {
|
getPackagePriceString(packageName) {
|
||||||
const formattedPriceFloat = parseFloat(this.getPackagePrice(packageName)).toFixed(2);
|
const formattedPriceFloat = parseFloat(this.getPackagePrice(packageName)).toFixed(2);
|
||||||
return '$' + formattedPriceFloat + '*';
|
return '+$' + formattedPriceFloat + '*';
|
||||||
},
|
},
|
||||||
getPackagePrice(packageName) {
|
getPackagePrice(packageName) {
|
||||||
let priceFloat = 0;
|
let priceFloat = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue