nuxeo-development-framework 0.5.6 → 0.5.7

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.
@@ -4290,8 +4290,9 @@
4290
4290
  }
4291
4291
  };
4292
4292
  ReadMoreComponent.prototype.ngOnChanges = function () {
4293
- this.rmTextShort = this.text;
4294
- this.rmTextFull = this.text;
4293
+ this.rmTextShort = this.text ? this.text : '';
4294
+ this.rmTextFull = this.text ? this.text : '';
4295
+ ;
4295
4296
  this.inputWords = this.text.split(' ');
4296
4297
  if (this.inputWords.length > this.wordCount) {
4297
4298
  this.fullText = false;