about summary refs log tree commit diff
path: root/src/state/models
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2023-08-08 12:32:44 -0500
committerGitHub <noreply@github.com>2023-08-08 12:32:44 -0500
commit872a7f93f4a2d1b0fe5050f85984f3b7d5215eae (patch)
treeb4861ff3ee29778b738a14de364158643915c399 /src/state/models
parentf7a0ea3e13d0f5c6b238784f5668647253cc5349 (diff)
parentc48ff1855c40dd445c56113c72d1970c2df48ccc (diff)
downloadvoidsky-872a7f93f4a2d1b0fe5050f85984f3b7d5215eae.tar.zst
Merge pull request #1133 from bluesky-social/eric/fix-thread-ui
fix thread spacing and reply lines
Diffstat (limited to 'src/state/models')
-rw-r--r--src/state/models/content/post-thread-item.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/content/post-thread-item.ts b/src/state/models/content/post-thread-item.ts
index 141b4f937..942f3acc8 100644
--- a/src/state/models/content/post-thread-item.ts
+++ b/src/state/models/content/post-thread-item.ts
@@ -107,7 +107,7 @@ export class PostThreadItemModel {
           const itemModel = new PostThreadItemModel(this.rootStore, item)
           itemModel._depth = this._depth + 1
           itemModel._showParentReplyLine =
-            itemModel.parentUri !== highlightedPostUri && replies.length === 0
+            itemModel.parentUri !== highlightedPostUri
           if (item.replies?.length) {
             itemModel._showChildReplyLine = true
             itemModel.assignTreeModels(item, highlightedPostUri, false, true)