diff --git a/src/filters/dashOrCurrency.js b/src/filters/dashOrCurrency.js index 9873990ab9..00243921c8 100644 --- a/src/filters/dashOrCurrency.js +++ b/src/filters/dashOrCurrency.js @@ -2,5 +2,5 @@ import toCurrency from './toCurrency'; export default function (value) { if (value == null || value === '') return () => '-'; - return toCurrency; + return () => toCurrency(value); }