From 6754b999efc48f72f086d7f7b339622f33e0e656 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 17 Jun 2021 14:41:21 +0200 Subject: [PATCH] fix: Remove Grouping for Max Error --- frontend/src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/main.js b/frontend/src/main.js index b5e109fbf..1eda3eaca 100755 --- a/frontend/src/main.js +++ b/frontend/src/main.js @@ -60,8 +60,8 @@ extend('gddSendAmount', { }, params: ['min', 'max'], message: (_, values) => { - values.min = i18n.n(values.min) - values.max = i18n.n(values.max) + values.min = i18n.n(values.min, 'ungroupedDecimal') + values.max = i18n.n(values.max, 'ungroupedDecimal') return i18n.t('form.validation.gddSendAmount', values) }, })