@salesforcedevs/dx-components 1.3.210-lnb10-alpha → 1.3.210-lnb11-alpha
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.
package/package.json
CHANGED
|
@@ -175,7 +175,7 @@ export default class Sidebar extends SidebarBase {
|
|
|
175
175
|
this.isSearchLoading = e.detail;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
private onSidebarSearchContentScroll() {
|
|
178
|
+
private onSidebarSearchContentScroll(scrollEvent) {
|
|
179
179
|
if (this.isSearchLoading) {
|
|
180
180
|
return;
|
|
181
181
|
}
|
|
@@ -192,6 +192,7 @@ export default class Sidebar extends SidebarBase {
|
|
|
192
192
|
this.requestedFetchMoreResults = true;
|
|
193
193
|
search.fetchMoreResults();
|
|
194
194
|
}
|
|
195
|
+
this.handleScroll(scrollEvent);
|
|
195
196
|
}
|
|
196
197
|
|
|
197
198
|
private initializeSearchScrollPosition() {
|