fix requested view for follow requests (#489)
This commit is contained in:
parent
73c99904cf
commit
dc091f1360
|
@ -65,8 +65,8 @@
|
||||||
return relationship && relationship.following
|
return relationship && relationship.following
|
||||||
},
|
},
|
||||||
blocking: ({ relationship }) => relationship && relationship.blocking,
|
blocking: ({ relationship }) => relationship && relationship.blocking,
|
||||||
followRequested: ({ relationship, account }) => {
|
followRequested: ({ relationship }) => {
|
||||||
return relationship && relationship.requested && account && account.locked
|
return relationship && relationship.requested
|
||||||
},
|
},
|
||||||
followLabel: ({ blocking, following, followRequested }) => {
|
followLabel: ({ blocking, following, followRequested }) => {
|
||||||
if (blocking) {
|
if (blocking) {
|
||||||
|
|
Loading…
Reference in a new issue