monkey-front-components 0.0.299 → 0.0.302

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.
@@ -1612,7 +1612,7 @@ class MECXFilterOptionsStatusComponent {
1612
1612
  else {
1613
1613
  filters.push(value);
1614
1614
  }
1615
- this._value = filters.join(',');
1615
+ this._value = filters?.length ? filters.join(',') : null;
1616
1616
  this.eventHandle.next(this._value);
1617
1617
  }
1618
1618
  }