nuxeo-development-framework 0.6.0 → 0.6.1

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.
@@ -6954,7 +6954,7 @@
6954
6954
  this.onSelectItems.emit(event);
6955
6955
  };
6956
6956
  DynamicFormSelectItemComponent.prototype.onScrollToEnd = function () {
6957
- this.fetchMore();
6957
+ // this.fetchMore();
6958
6958
  };
6959
6959
  DynamicFormSelectItemComponent.prototype.fetchMore = function () {
6960
6960
  this.loading = true;
@@ -6972,7 +6972,7 @@
6972
6972
  }
6973
6973
  };
6974
6974
  DynamicFormSelectItemComponent.prototype.ngOnInit = function () {
6975
- this.buffer = (this.data || []).slice(0, this.bufferSize);
6975
+ this.buffer = this.data;
6976
6976
  this.buffer.map(function (item) {
6977
6977
  item.isSelected = false;
6978
6978
  });