diff --git a/routes/_components/Timeline.html b/routes/_components/Timeline.html index 7b7a5f32..1ba903fe 100644 --- a/routes/_components/Timeline.html +++ b/routes/_components/Timeline.html @@ -29,14 +29,14 @@ export default { async oncreate() { - let instanceName = this.store.get('currentInstance') - let instanceData = this.store.get('currentInstanceData') - let online = this.get('online') - let timeline = this.get('timeline') let statuses = await this.fetchStatusesAndPossiblyFallBack() this.addStatuses(statuses) - this.set({initialized: true}) - this.fire('initialized') + requestAnimationFrame(() => { + requestAnimationFrame((() => { + this.set({initialized: true}) + this.fire('initialized') + })) + }) }, data: () => ({ StatusListItem: StatusListItem,