From 09ba86dec566797993de910ea5689d65f64baeac Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 28 Apr 2024 12:55:17 -0400 Subject: [PATCH] Show replies to gatherings. --- apps/ssb.json | 2 +- apps/ssb/tf-message.js | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/apps/ssb.json b/apps/ssb.json index 4865e94a..79263a73 100644 --- a/apps/ssb.json +++ b/apps/ssb.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🐌", - "previous": "&xyYP2KwKbv0fouic/uYj0WTA8jN0fAkQhPBJlLhnvK8=.sha256" + "previous": "&wuCG8/3Z93hPcX4PZNNoQnQx9L2QjCKfn/hoVHb2VJo=.sha256" } diff --git a/apps/ssb/tf-message.js b/apps/ssb/tf-message.js index 16d24460..998aaf41 100644 --- a/apps/ssb/tf-message.js +++ b/apps/ssb/tf-message.js @@ -408,6 +408,17 @@ ${JSON.stringify(mention, null, 2)} ${raw_button} ${self.format == 'raw' ? self.render_raw() : inner} ${self.render_votes()} + ${(self.message.child_messages || []).map( + (x) => html` + + ` + )} `; }