@servicemind.tis/tis-smart-table-viewer 2.3.10 → 2.3.11

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.
@@ -1958,6 +1958,11 @@ class TisSmartTableViewerComponent {
1958
1958
  _table;
1959
1959
  set table(value) {
1960
1960
  this._table = value;
1961
+ // ✅ FIX: When table becomes available, connect it to datasource if it exists
1962
+ if (this._table && this.dataSource) {
1963
+ // Force the table to connect to our datasource
1964
+ this._table.dataSource = this.dataSource;
1965
+ }
1961
1966
  }
1962
1967
  _sort;
1963
1968
  _sortSubscription;