@sebgroup/green-angular 1.8.1 → 1.8.2

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.
@@ -701,8 +701,8 @@ class NggDatepickerComponent {
701
701
  }
702
702
  set value(newValue) {
703
703
  if (newValue !== this._value) {
704
- this._value = newValue;
705
- if (this._value && this.dp) {
704
+ this._value = newValue || '';
705
+ if (this._value !== undefined && this.dp) {
706
706
  this.dp.select(this._value);
707
707
  }
708
708
  }