chrv-components 1.9.21 → 1.9.22

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.
Binary file
@@ -496,7 +496,7 @@ class ChrBaseInputComponent {
496
496
  // observable is subscribed to and set the value to said null.
497
497
  skip(1), debounceTime(this.debounceTime), distinctUntilChanged())
498
498
  .subscribe((res) => {
499
- //console.log('[BaseInput] Sent: ', res);
499
+ this.value = res;
500
500
  this.onChange(res);
501
501
  this.valueChanges.emit(res);
502
502
  });