Commit 10d7179c91530bc339270652277e99f17716fc99
Only show the 'no followers' warning if indexing has finished.
Gordon Martin committed on 2/18/2018, 10:21:48 AMParent: 8e308450fe64500e05acf9f9f82a8d91a22ea58f
Files changed
modules/profile/obs/contact.js | changed |
modules/profile/obs/contact.js | ||
---|---|---|
@@ -51,9 +51,9 @@ | ||
51 | 51 | return sync && (!following || !following.length) |
52 | 52 | }) |
53 | 53 | |
54 | 54 | var hasNoFollowers = computed(followers, followersList => { |
55 | - return !followersList || !followersList.length | |
55 | + return sync && (!followersList || !followersList.length) | |
56 | 56 | }) |
57 | 57 | |
58 | 58 | return { |
59 | 59 | followers, |
Built with git-ssb-web