@tripup-company/element-ui-extended 0.0.54 → 0.0.55

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.
@@ -25712,7 +25712,7 @@ var filter_convertor_FilterConverter = /*#__PURE__*/function () {
25712
25712
  var searchArray = [],
25713
25713
  searchFieldsArray = [];
25714
25714
  Object.keys(search).forEach(function (key) {
25715
- if (search[key].operator && search[key].value || ['is_null', 'is_not_null'].includes(search[key].operator) || search[key].value === false) {
25715
+ if (search[key].operator && search[key].value.length || ['is_null', 'is_not_null'].includes(search[key].operator) || search[key].value === false) {
25716
25716
  var filter = filterFactory.createFilter(key, search[key]);
25717
25717
 
25718
25718
  var _filter$applyFilter = filter.applyFilter(),