@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.
@@ -2148,7 +2148,7 @@ var LookupComponent = /** @class */ (function () {
2148
2148
  this.onSelect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () { return _this.onChange(_this.value); });
2149
2149
  this.onUnselect.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () { return _this.onChange(_this.value); });
2150
2150
  this.onClear.pipe(takeUntil(this.ngUnsubscribe)).subscribe(function () {
2151
- if (_this.multiple || !_this.value) {
2151
+ if (_this.multiple || _this.value) {
2152
2152
  return;
2153
2153
  }
2154
2154
  _this.onChange(null);