Zone Calendar #411

Merged
jsegarra merged 28 commits from :feature/ZoneCalendar into dev 2024-06-07 07:40:01 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 3f76aea680 - Show all commits

View File

@ -2,5 +2,5 @@ import toCurrency from './toCurrency';
export default function (value) { export default function (value) {
if (value == null || value === '') return () => '-'; if (value == null || value === '') return () => '-';
return toCurrency; return () => toCurrency(value);
} }