diff options
author | Eric Bailey <git@esb.lol> | 2023-08-08 12:32:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-08 12:32:44 -0500 |
commit | 872a7f93f4a2d1b0fe5050f85984f3b7d5215eae (patch) | |
tree | b4861ff3ee29778b738a14de364158643915c399 /src/state/models | |
parent | f7a0ea3e13d0f5c6b238784f5668647253cc5349 (diff) | |
parent | c48ff1855c40dd445c56113c72d1970c2df48ccc (diff) | |
download | voidsky-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.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) |