diff options
author | Eric Bailey <git@esb.lol> | 2023-08-08 11:29:38 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2023-08-08 11:34:48 -0500 |
commit | 8cb076f5fd8d4435703ac1ac4705c275eb38c0e8 (patch) | |
tree | 09c551ef5fd119df95e676ffa5cae329467019fc /src/state/models | |
parent | f7a0ea3e13d0f5c6b238784f5668647253cc5349 (diff) | |
download | voidsky-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.ts | 2 |
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) |