1
0
Fork 0

Open account when clicking on a follower's bio.

This commit is contained in:
Nicolas Perriault 2017-04-28 09:24:14 +02:00
parent 50f74848e8
commit 9668e63f34
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
1 changed files with 6 additions and 1 deletions

View File

@ -369,7 +369,12 @@ notificationFollowView { accounts } =
div [ class "status follow-profile" ]
[ accountAvatarLink account
, div [ class "username" ] [ accountLink account ]
, p [ class "status-text" ] <| ViewHelper.formatContent account.note []
, p
[ class "status-text"
, onClick <| LoadAccount account.id
]
<|
ViewHelper.formatContent account.note []
]
in
div [ class "notification follow" ]