diff --git a/public/js/timeline.js b/public/js/timeline.js index efdc4846d..c9c840d7c 100644 Binary files a/public/js/timeline.js and b/public/js/timeline.js differ diff --git a/public/mix-manifest.json b/public/mix-manifest.json index e27dd434f..6e293df6a 100644 Binary files a/public/mix-manifest.json and b/public/mix-manifest.json differ diff --git a/resources/assets/js/components/Timeline.vue b/resources/assets/js/components/Timeline.vue index 281c7feef..cdc1087f5 100644 --- a/resources/assets/js/components/Timeline.vue +++ b/resources/assets/js/components/Timeline.vue @@ -471,10 +471,10 @@ axios.get('/api/v2/config') .then(res => { this.config = res.data; - this.fetchTimelineApi(); if(window.outerWidth > 767) { this.fetchProfile(); } + this.fetchTimelineApi(); }); }, @@ -489,7 +489,6 @@ this.showSuggestions = true; } - if(localStorage.getItem('pf_metro_ui.exp.rm') == 'false') { this.showReadMore = false; } else { @@ -523,6 +522,7 @@ $('.profile-card .loader').addClass('d-none'); $('.profile-card .contents').removeClass('d-none'); $('.profile-card .card-footer').removeClass('d-none'); + this.expRec(); }).catch(err => { swal( 'Oops, something went wrong', @@ -561,7 +561,6 @@ this.max_id = Math.min(...ids); $('.timeline .pagination').removeClass('d-none'); this.loading = false; - this.expRec(); }).catch(err => { }); },