From b10761a41339c876e194db50100d147b30a6b454 Mon Sep 17 00:00:00 2001 From: Nicolas Perriault Date: Sat, 22 Apr 2017 14:49:05 +0200 Subject: [PATCH] Fix code formatting. --- src/View.elm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/View.elm b/src/View.elm index 0394e02..3274c00 100644 --- a/src/View.elm +++ b/src/View.elm @@ -122,10 +122,9 @@ statusView ({ account, content, media_attachments, reblog, mentions } as status) let accountLinkAttributes = [ href account.url - - -- When clicking on a status, we should not let the browser - -- redirect to a new page. That's why we're preventing the default - -- behavior here + -- When clicking on a status, we should not let the browser + -- redirect to a new page. That's why we're preventing the default + -- behavior here , ViewHelper.onClickWithPreventAndStop (OnLoadUserAccount account.id) ] in @@ -144,8 +143,7 @@ statusView ({ account, content, media_attachments, reblog, mentions } as status) Nothing -> div [ class "status" ] [ a accountLinkAttributes - [ img [ class "avatar", src account.avatar ] [] - ] + [ img [ class "avatar", src account.avatar ] [] ] , div [ class "username" ] [ a accountLinkAttributes [ text account.display_name