@cqa-lib/cqa-ui 1.0.81 → 1.0.82

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.
@@ -1539,6 +1539,10 @@ class DynamicSelectFieldComponent {
1539
1539
  this.loadingMore = false;
1540
1540
  }
1541
1541
  this.lastOptionsLength = len;
1542
+ // If panel is open and hasMore is true, ensure the sentinel is being observed.
1543
+ if (this.selectRef?.panelOpen && this.config?.hasMore) {
1544
+ setTimeout(() => this.setupLoadMoreObserver(), 0);
1545
+ }
1542
1546
  }
1543
1547
  if ('form' in changes && !changes['form'].firstChange) {
1544
1548
  this.applySelectedValueIfNeeded();