git ssb

10+

Matt McKegg / patchwork



Commit 0652352c9432242c53c49eb8cb21d59d1a0c5f51

Remove testing 'always true' boolean.

Gordon Martin committed on 1/2/2018, 5:36:36 PM
Parent: 9f472111ca60b4b0a13ba44e11922c95dd078557

Files changed

modules/profile/obs/contact.jschanged
modules/profile/obs/contact.jsView
@@ -45,9 +45,9 @@
4545
4646 var isYou = computed([yourId, id], (a, b) => a === b)
4747
4848 var isNotFollowingAnybody = computed(following,
49- followingList => true || !followingList || followingList.length == 0
49+ followingList => !followingList || followingList.length == 0
5050 );
5151
5252 return {
5353 followers,

Built with git-ssb-web