Skip to content

Commit

Permalink
Merge pull request #18 from svsticky/fix/17-commas-do-not-get-parsed-…
Browse files Browse the repository at this point in the history
…to-points

fix invalid transactions
  • Loading branch information
TobiasDeBruijn authored Dec 2, 2024
2 parents eaf63e5 + 5496c6c commit 4086fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export default defineComponent({
this.form.name,
this.form.iban,
this.form.email,
Number.parseFloat(this.form.value),
Number.parseFloat(this.form.value.replaceAll(",",".")),
this.form.what,
this.form.commission,
this.form.notes,
Expand Down

0 comments on commit 4086fb8

Please sign in to comment.