json-rules-filter 1.0.4 → 1.0.5
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.
- package/package.json +1 -1
- package/readme.md +1 -1
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -208,7 +208,7 @@ $("#container-rules").jsonRulesFilter(empleados, {
|
|
|
208
208
|
//generamos indicador budge para contenedor de filtros
|
|
209
209
|
$.each(reglas, function (index, element) {
|
|
210
210
|
|
|
211
|
-
let text = `${element.dataName} ${element.optionFilterText.toLowerCase()} ${element.searchValue}`;
|
|
211
|
+
let text = `${element.dataName} ${element.optionFilterText.join("").toLowerCase()} ${element.searchValue}`;
|
|
212
212
|
|
|
213
213
|
if (element.typeFilter === 'select') {
|
|
214
214
|
text = `${element.dataName} en (${element.optionFilter.join(", ").toLowerCase()})`
|