git ssb

16+

Dominic / patchbay



Commit 07cfe9bf013a2baa61f2d075994dc78be9aa9309

Move blocking down a bit

Anders Rune Jensen committed on 11/17/2017, 8:11:05 PM
Parent: 51e9066a0702c78e11bebb57dd35daea32b5523b

Files changed

contact/html/relationships.jschanged
contact/html/relationships.jsView
@@ -90,16 +90,8 @@
9090 ])
9191 ])
9292 ])
9393 ),
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- }),
10294 computed(blockers, blockers => {
10395 if (blockers.length === 0) return ''
10496
10597 return h('div.blockers', [
@@ -117,8 +109,16 @@
117109 ]),
118110 h('div.followers', [
119111 h('header', 'Followers'),
120112 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 + })
122122 ])
123123 }
124124 }

Built with git-ssb-web