From 6cf8b392df0fad4c2391e9dfca969518c37f6c6b Mon Sep 17 00:00:00 2001 From: Zed Date: Tue, 8 Oct 2019 20:51:25 +0200 Subject: [PATCH] Reorder profile stats Fixes #69 --- src/views/profile.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/profile.nim b/src/views/profile.nim index 59e466c..6a6b619 100644 --- a/src/views/profile.nim +++ b/src/views/profile.nim @@ -44,8 +44,8 @@ proc renderProfileCard*(profile: Profile; prefs: Prefs): VNode = tdiv(class="profile-card-extra-links"): ul(class="profile-statlist"): renderStat(profile.tweets, "posts", text="Tweets") - renderStat(profile.followers, "followers") renderStat(profile.following, "following") + renderStat(profile.followers, "followers") renderStat(profile.likes, "likes") proc renderPhotoRail(profile: Profile; photoRail: seq[GalleryPhoto]): VNode =