git ssb

0+

alanz / patchwork



forked from Matt McKegg / patchwork

Commit 719c20c66b72e2b795bcbf2367d4ec4e85bb0d1a

make view full thread show total post count on all views

Matt McKegg committed on 10/19/2017, 3:08:11 AM
Parent: a7c3e5082024db0cf8d9cabcd605b1aac6575fd5

Files changed

modules/feed/html/rollup.jschanged
modules/feed/html/rollup.jsView
@@ -179,10 +179,10 @@
179179 lastBumpType = type
180180 }
181181 })
182182
183- var replies = item.replies.filter(isReply).filter(displayFilter).sort(byAssertedTime)
184- var replyElements = replies.slice(-3).map((msg) => {
183+ var replies = item.replies.filter(isReply).sort(byAssertedTime)
184+ var replyElements = replies.filter(displayFilter).slice(-3).map((msg) => {
185185 var result = api.message.html.render(msg, {
186186 inContext: true,
187187 inSummary: true,
188188 previousId,

Built with git-ssb-web