fix: dashOrCurrency filter
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-05-29 12:17:45 +02:00
parent ed566e6ece
commit 3f76aea680
1 changed files with 1 additions and 1 deletions

View File

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