Adding + to front of prices on service packages page
This commit is contained in:
parent
90d56cc741
commit
7475216665
1 changed files with 1 additions and 1 deletions
|
|
@ -171,7 +171,7 @@
|
|||
},
|
||||
getPackagePriceString(packageName) {
|
||||
const formattedPriceFloat = parseFloat(this.getPackagePrice(packageName)).toFixed(2);
|
||||
return '$' + formattedPriceFloat + '*';
|
||||
return '+$' + formattedPriceFloat + '*';
|
||||
},
|
||||
getPackagePrice(packageName) {
|
||||
let priceFloat = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue