intelica-library-project 20.0.29 → 20.0.30

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.
@@ -1679,12 +1679,14 @@ class TableComponent {
1679
1679
  SortField = null;
1680
1680
  MaxLevel = 0;
1681
1681
  Levels = [];
1682
- ngOnChanges() {
1682
+ ngOnChanges(changes) {
1683
1683
  if (!this.SortField && this.DefaultSortField) {
1684
1684
  this.SortField = this.DefaultSortField;
1685
1685
  this.SortOrder = this.DefaultSortOrder;
1686
1686
  }
1687
- this.ExecuteSearch();
1687
+ if (changes["ListData"]) {
1688
+ this.ExecuteSearch();
1689
+ }
1688
1690
  this.ValidateSelect();
1689
1691
  }
1690
1692
  ngAfterContentInit() {