From 0508917c6ac55d16d10e8d3c2b3c487a3aa66f3e Mon Sep 17 00:00:00 2001 From: Albert Gasset Date: Fri, 24 May 2019 16:18:55 +0200 Subject: [PATCH] MOBILE-3039 forum: Display prefetch icon --- src/addon/mod/forum/components/index/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/addon/mod/forum/components/index/index.ts b/src/addon/mod/forum/components/index/index.ts index 2911bd925..973b3efd7 100644 --- a/src/addon/mod/forum/components/index/index.ts +++ b/src/addon/mod/forum/components/index/index.ts @@ -244,6 +244,9 @@ export class AddonModForumIndexComponent extends CoreCourseModuleMainActivityCom this.domUtils.showErrorModalDefault(message, 'addon.mod_forum.errorgetforum', true); this.loadMoreError = true; // Set to prevent infinite calls with infinite-loading. + }).then(() => { + // All data obtained, now fill the context menu. + this.fillContextMenu(refresh); }); }