Commit 0652352c9432242c53c49eb8cb21d59d1a0c5f51
Remove testing 'always true' boolean.
Gordon Martin committed on 1/2/2018, 5:36:36 PMParent: 9f472111ca60b4b0a13ba44e11922c95dd078557
Files changed
modules/profile/obs/contact.js | changed |
modules/profile/obs/contact.js | ||
---|---|---|
@@ -45,9 +45,9 @@ | ||
45 | 45 | |
46 | 46 | var isYou = computed([yourId, id], (a, b) => a === b) |
47 | 47 | |
48 | 48 | var isNotFollowingAnybody = computed(following, |
49 | - followingList => true || !followingList || followingList.length == 0 | |
49 | + followingList => !followingList || followingList.length == 0 | |
50 | 50 | ); |
51 | 51 | |
52 | 52 | return { |
53 | 53 | followers, |
Built with git-ssb-web