Skip to content

Commit

Permalink
fix: fix price error for package types other than package (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Ernst authored Mar 1, 2024
1 parent c39aee9 commit e86a6a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

<template v-if="$configBus.get(choice, 'price') !== 0">
<span v-text="$configBus.get(choice, 'price') > 0 ? '+ ' : '– '" />
{{ formatCurrency($configBus.get(choice, 'price')) }}
{{ formatCurrency(parseFloat($configBus.get(choice, 'price'))) }}
</template>
</component>
</label>
Expand Down

0 comments on commit e86a6a4

Please sign in to comment.