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