Commit 07cfe9bf013a2baa61f2d075994dc78be9aa9309
Move blocking down a bit
Anders Rune Jensen committed on 11/17/2017, 8:11:05 PMParent: 51e9066a0702c78e11bebb57dd35daea32b5523b
Files changed
contact/html/relationships.js | changed |
contact/html/relationships.js | |||
---|---|---|---|
@@ -90,16 +90,8 @@ | |||
90 | 90 … | ]) | |
91 | 91 … | ]) | |
92 | 92 … | ]) | |
93 | 93 … | ), | |
94 | - computed(blocking, blocking => { | ||
95 | - if (blocking.length === 0) return '' | ||
96 | - | ||
97 | - return h('div.blocking', [ | ||
98 | - h('header', 'Blocking'), | ||
99 | - h('section', blocking.map(imageLink)) | ||
100 | - ]) | ||
101 | - }), | ||
102 | 94 … | computed(blockers, blockers => { | |
103 | 95 … | if (blockers.length === 0) return '' | |
104 | 96 … | ||
105 | 97 … | return h('div.blockers', [ | |
@@ -117,8 +109,16 @@ | |||
117 | 109 … | ]), | |
118 | 110 … | h('div.followers', [ | |
119 | 111 … | h('header', 'Followers'), | |
120 | 112 … | h('section', map(followers, imageLink)) | |
121 | - ]) | ||
113 … | + ]), | ||
114 … | + computed(blocking, blocking => { | ||
115 … | + if (blocking.length === 0) return '' | ||
116 … | + | ||
117 … | + return h('div.blocking', [ | ||
118 … | + h('header', 'Blocking'), | ||
119 … | + h('section', blocking.map(imageLink)) | ||
120 … | + ]) | ||
121 … | + }) | ||
122 | 122 … | ]) | |
123 | 123 … | } | |
124 | 124 … | } |
Built with git-ssb-web