- updated call form, new fields;

- updated preview pages for bando;
- fixed bug with decimal number field;
This commit is contained in:
Vitalii Kiiko
2024-10-01 12:55:17 +02:00
parent 111b1b5620
commit 676d7621e7
17 changed files with 282 additions and 56 deletions

View File

@@ -5,7 +5,7 @@ const getNumberWithCurrency = (value, currency = 'EUR') => {
currency
})
return formatter.format(value)
return value ? formatter.format(value) : formatter.format(0)
}
export default getNumberWithCurrency;