survey-creator-angular 2.3.5 → 2.3.6

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.
@@ -798,7 +798,7 @@
798
798
  page.unRegisterFunctionOnPropertyValueChanged("name");
799
799
  };
800
800
  PageWrapperComponent.prototype.ngOnChanges = function (changes) {
801
- if (changes.page.currentValue !== changes.page.previousValue) {
801
+ if (changes.page && changes.page.currentValue !== changes.page.previousValue) {
802
802
  this.clearCallback(changes.page.previousValue);
803
803
  this.setupCallback(changes.page.currentValue);
804
804
  }