@one-paragon/angular-utilities 2.8.5 → 2.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2589,7 +2589,7 @@ function buildInAllValuesFilter(config, previousMeta, currentMeta, data, metaTim
|
|
|
2589
2589
|
const blankValueFilter = '__tb_sp_blank';
|
|
2590
2590
|
const blankValueAndEmptyStringFilter = '__tb_sp_BLANK';
|
|
2591
2591
|
function buildFilter(data, metaData, config) {
|
|
2592
|
-
const map = metaData.fieldType == FieldType.Currency ? (v => v == null ? v : getFactory
|
|
2592
|
+
const map = metaData.fieldType == FieldType.Currency ? (v => v == null ? v : getFactory(metaData.key)(v))
|
|
2593
2593
|
: typeof metaData.filterLogic?.filterBy === 'function' && !metaData.additional?.filterOptions?.filterableValues?.doNotIncludeBlanks ? metaData.filterLogic?.filterBy
|
|
2594
2594
|
: createTransformer(metaData, config, true, false);
|
|
2595
2595
|
const mapped = data.map(v => {
|