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(); }); }