mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 14:46:37 +00:00
Fix #3203
This commit is contained in:
@@ -379,6 +379,11 @@
|
||||
if (0 === sourceId) {
|
||||
sourceId = null;
|
||||
}
|
||||
// parse amount if has exactly one comma:
|
||||
// solves issues with some locales.
|
||||
if (1 === (row.amount.match(/\,/g) || []).length) {
|
||||
row.amount = row.amount.replace(',', '.');
|
||||
}
|
||||
|
||||
currentArray =
|
||||
{
|
||||
|
Reference in New Issue
Block a user