MOBILE-2513 participants: Fix infinite loading

main
Dani Palou 2018-08-08 09:42:52 +02:00
parent e6c5607463
commit 51747eca1a
1 changed files with 3 additions and 0 deletions

View File

@ -54,6 +54,9 @@ export class CoreUserParticipantsComponent implements OnInit {
}); });
}).finally(() => { }).finally(() => {
this.participantsLoaded = true; this.participantsLoaded = true;
// Call resize to make infinite loading work, in some cases the content dimensions aren't read.
this.content && this.content.resize();
}); });
} }