mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-29 12:41:10 -04:00
fix amount int issue
This commit is contained in:
@ -288,7 +288,7 @@ export default {
|
||||
return this.formData.amount / 100
|
||||
},
|
||||
set: function (newValue) {
|
||||
this.formData.amount = newValue * 100
|
||||
this.formData.amount = (newValue * 100).toFixed(2)
|
||||
},
|
||||
},
|
||||
pageTitle() {
|
||||
|
||||
Reference in New Issue
Block a user