소스 검색

Reorder profile stats

Fixes #69
Zed 7 년 전
부모
커밋
6cf8b392df
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/profile.nim

+ 1 - 1
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 =