@seniorsistemas/angular-components 16.6.2 → 16.6.4

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.
@@ -2318,7 +2318,7 @@
2318
2318
  this.onSelect.pipe(operators.takeUntil(this.ngUnsubscribe)).subscribe(function () { return _this.onChange(_this.value); });
2319
2319
  this.onUnselect.pipe(operators.takeUntil(this.ngUnsubscribe)).subscribe(function () { return _this.onChange(_this.value); });
2320
2320
  this.onClear.pipe(operators.takeUntil(this.ngUnsubscribe)).subscribe(function () {
2321
- if (_this.multiple || !_this.value) {
2321
+ if (_this.multiple || _this.value) {
2322
2322
  return;
2323
2323
  }
2324
2324
  _this.onChange(null);