MOBILE-3320 database: Fix advanced search entries

main
Noel De Martin 2021-07-06 10:57:33 +02:00
parent 4c870c072c
commit fd49ee7057
1 changed files with 5 additions and 3 deletions

View File

@ -498,9 +498,11 @@ export class AddonModDataIndexComponent extends CoreCourseModuleMainActivityComp
}; };
// Try to find page number and offset of the entry. // Try to find page number and offset of the entry.
const pageXOffset = this.entries.findIndex((entry) => entry.id == entryId); if (!this.search.searching) {
if (pageXOffset >= 0) { const pageXOffset = this.entries.findIndex((entry) => entry.id == entryId);
params.offset = this.search.page * AddonModDataProvider.PER_PAGE + pageXOffset; if (pageXOffset >= 0) {
params.offset = this.search.page * AddonModDataProvider.PER_PAGE + pageXOffset;
}
} }
CoreNavigator.navigateToSitePath( CoreNavigator.navigateToSitePath(