diff --git a/src/View.elm b/src/View.elm index 7b713e6..9b01134 100644 --- a/src/View.elm +++ b/src/View.elm @@ -39,7 +39,9 @@ statusView status = Nothing -> div [ class "status" ] [ img [ class "avatar", src status.account.avatar ] [] - , div [ class "username" ] [ text status.account.username ] + , div [ class "username" ] + [ a [ href status.account.url ] [ text status.account.username ] + ] , div [ class "status-text" ] (HtmlParser.parse status.content |> toVirtualDom) ]