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:
Yohann D'ANELLO 2021-06-07 23:46:39 +02:00
parent c4c4e9594f
commit 35ffb36fbd
No known key found for this signature in database
GPG key ID: 3A75C55819C8CF85
2 changed files with 3 additions and 3 deletions

View file

@ -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>')