@firestitch/filter 13.0.4 → 13.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.
@@ -1121,7 +1121,12 @@ class ChipsItem extends BaseItem {
1121
1121
  return !!this.value;
1122
1122
  }
1123
1123
  get queryObject() {
1124
- const value = this.value;
1124
+ if (!this.value) {
1125
+ return {};
1126
+ }
1127
+ const value = this.value
1128
+ .map((item) => item.value)
1129
+ .join(',');
1125
1130
  const name = this.name;
1126
1131
  return {
1127
1132
  [name]: value,