Round amounts to the nearest integer rather than take the floor
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
parent
c4c4e9594f
commit
35ffb36fbd
2 changed files with 3 additions and 3 deletions
|
|
@ -243,7 +243,7 @@ $('#btn_transfer').click(function () {
|
|||
error = true
|
||||
}
|
||||
|
||||
const amount = Math.floor(100 * amount_field.val())
|
||||
const amount = Math.round(100 * amount_field.val())
|
||||
if (amount > 2147483647) {
|
||||
amount_field.addClass('is-invalid')
|
||||
$('#amount-required').html('<strong>' + gettext('The amount must stay under 21,474,836.47 €.') + '</strong>')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue