Skip to content

Commit

Permalink
Change order of quoted replies
Browse files Browse the repository at this point in the history
  • Loading branch information
B0pol authored and zedeus committed Nov 8, 2020
1 parent e105426 commit ed91133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/tweet.nim
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ proc renderStats(stats: TweetStats; views: string): VNode =
buildHtml(tdiv(class="tweet-stats")):
span(class="tweet-stat"): icon "comment", insertSep($stats.replies, ',')
span(class="tweet-stat"): icon "retweet", insertSep($stats.retweets, ',')
span(class="tweet-stat"): icon "heart", insertSep($stats.likes, ',')
span(class="tweet-stat"): icon "quote", insertSep($stats.quotes, ',')
span(class="tweet-stat"): icon "heart", insertSep($stats.likes, ',')
if views.len > 0:
span(class="tweet-stat"): icon "play", insertSep(views, ',')

Expand Down

0 comments on commit ed91133

Please sign in to comment.