Hide "Replying to" in threads when appropriate

This commit is contained in:
Zed
2019-07-02 01:01:27 +02:00
parent a67d27e0c4
commit f378eedcc8
2 changed files with 7 additions and 6 deletions

View File

@@ -155,7 +155,7 @@
</div>
#end proc
#
#proc renderTweet*(tweet: Tweet; class=""; last=false): string =
#proc renderTweet*(tweet: Tweet; class=""; first=true; last=false): string =
#var divClass = if last: "thread-last " & class else: class
#if divClass.len > 0:
<div class="${divClass}">
@@ -164,7 +164,7 @@
<div class="status-el">
<div class="status-body">
${renderHeading(tweet)}
#if tweet.reply.len > 0:
#if first and tweet.reply.len > 0:
${renderReply(tweet)}
#end if
<div class="status-content-wrapper">