Adding + to front of prices on service packages page

This commit is contained in:
brydon1 2023-05-31 11:20:30 -04:00
parent 90d56cc741
commit 7475216665

View file

@ -171,7 +171,7 @@
},
getPackagePriceString(packageName) {
const formattedPriceFloat = parseFloat(this.getPackagePrice(packageName)).toFixed(2);
return '$' + formattedPriceFloat + '*';
return '+$' + formattedPriceFloat + '*';
},
getPackagePrice(packageName) {
let priceFloat = 0;