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 11:29:38 -0500
committerEric Bailey <git@esb.lol>2023-08-08 11:34:48 -0500
commit8cb076f5fd8d4435703ac1ac4705c275eb38c0e8 (patch)
tree09c551ef5fd119df95e676ffa5cae329467019fc /src/state/models
parentf7a0ea3e13d0f5c6b238784f5668647253cc5349 (diff)
downloadvoidsky-8cb076f5fd8d4435703ac1ac4705c275eb38c0e8.tar.zst
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)