Merge pull request #1451 from dpalou/MOBILE-2513

MOBILE-2513 participants: Fix infinite loading
main
Juan Leyva 2018-08-21 16:56:03 +01:00 committed by GitHub
commit bcd42f24e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();
}); });
} }