From 51747eca1ada4e2eefd2461e941e0340e338834d Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Wed, 8 Aug 2018 09:42:52 +0200 Subject: [PATCH] MOBILE-2513 participants: Fix infinite loading --- src/core/user/components/participants/participants.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/user/components/participants/participants.ts b/src/core/user/components/participants/participants.ts index 653a3a74f..ff4434a9e 100644 --- a/src/core/user/components/participants/participants.ts +++ b/src/core/user/components/participants/participants.ts @@ -54,6 +54,9 @@ export class CoreUserParticipantsComponent implements OnInit { }); }).finally(() => { this.participantsLoaded = true; + + // Call resize to make infinite loading work, in some cases the content dimensions aren't read. + this.content && this.content.resize(); }); }