From 47fdf0f0b7f0cfdd6c85fbb9f52236a484661f54 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 24 Feb 2019 22:12:53 -0700 Subject: [PATCH] Update Profile component --- resources/assets/js/components/Profile.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/js/components/Profile.vue b/resources/assets/js/components/Profile.vue index 593ea8e48..bdeaa6bb7 100644 --- a/resources/assets/js/components/Profile.vue +++ b/resources/assets/js/components/Profile.vue @@ -352,6 +352,7 @@ export default { fetchProfile() { axios.get('/api/v1/accounts/' + this.profileId).then(res => { this.profile = res.data; + this.loading = false; }); axios.get('/api/v1/accounts/verify_credentials').then(res => { this.user = res.data; @@ -401,7 +402,6 @@ export default { this.timeline.push(...data); this.timelinePage += 1; $state.loaded(); - this.loading = false; } else { $state.complete(); }