From 3ab26c09d8857386f1168cc4023e6615165103ef Mon Sep 17 00:00:00 2001 From: Nicolas Perriault Date: Fri, 5 May 2017 19:20:07 +0200 Subject: [PATCH] Use the right status entry view for the account tl. --- src/View/Account.elm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/View/Account.elm b/src/View/Account.elm index 19a35f5..f4ae7c4 100644 --- a/src/View/Account.elm +++ b/src/View/Account.elm @@ -16,7 +16,7 @@ import Mastodon.Model exposing (..) import Types exposing (..) import View.Common as Common import View.Events exposing (..) -import View.Status exposing (statusView) +import View.Status exposing (statusEntryView) import View.Formatter exposing (formatContent) @@ -127,8 +127,7 @@ accountTimelineView currentUser timeline relationship account = let keyedEntry status = ( toString status.id - , li [ class "list-group-item status" ] - [ Lazy.lazy2 statusView "account" status ] + , Lazy.lazy (statusEntryView "account" "status" currentUser) status ) entries =