monkey-front-components 0.0.333 → 0.0.336

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.
@@ -1599,7 +1599,7 @@ class MECXFilterOptionsStatusComponent {
1599
1599
  }
1600
1600
  onHandleChecked(cmp) {
1601
1601
  const { _value } = this;
1602
- return `${_value}` === cmp;
1602
+ return `${_value}`.split(',')?.indexOf(cmp) >= 0;
1603
1603
  }
1604
1604
  onChangeFilter(event, value) {
1605
1605
  event.preventDefault();