git ssb

10+

Matt McKegg / patchwork



Commit 10d7179c91530bc339270652277e99f17716fc99

Only show the 'no followers' warning if indexing has finished.

Gordon Martin committed on 2/18/2018, 10:21:48 AM
Parent: 8e308450fe64500e05acf9f9f82a8d91a22ea58f

Files changed

modules/profile/obs/contact.jschanged
modules/profile/obs/contact.jsView
@@ -51,9 +51,9 @@
5151 return sync && (!following || !following.length)
5252 })
5353
5454 var hasNoFollowers = computed(followers, followersList => {
55- return !followersList || !followersList.length
55+ return sync && (!followersList || !followersList.length)
5656 })
5757
5858 return {
5959 followers,

Built with git-ssb-web