diff options
author | 2024-07-13 12:26:16 +0200 | |
---|---|---|
committer | 2024-07-13 12:26:16 +0200 | |
commit | c83e96b8a740a44f565068d06c4f12eef486b7e5 (patch) | |
tree | a49ff113cb373953dfbe85e3406971a4d1a6779b /internal/api/model/status.go | |
parent | [bugfix] Fix panic in `isStatusHomeTimelineable` (#3096) (diff) | |
download | gotosocial-c83e96b8a740a44f565068d06c4f12eef486b7e5.tar.xz |
[chore/frontend] Tweak threading a bit, inform about hidden replies (#3097)
* [chore/frontend] Tweak threading a bit, inform about hidden replies
* whoops
* round off bottom of replies col-header if no replies visible
Diffstat (limited to 'internal/api/model/status.go')
-rw-r--r-- | internal/api/model/status.go | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/internal/api/model/status.go b/internal/api/model/status.go index 00be868f1..a9c668565 100644 --- a/internal/api/model/status.go +++ b/internal/api/model/status.go @@ -126,8 +126,17 @@ type WebStatus struct { // display this status in the web view. Indent int - // This status is the first status after - // the "main" thread, so it and everything + // This status is the last visible status + // in the main thread, so everything below + // can be considered "replies". + ThreadLastMain bool + + // This status is the one around which + // the thread context was constructed. + ThreadContextStatus bool + + // This status is the first visibile status + // after the "main" thread, so it and everything // below it can be considered "replies". ThreadFirstReply bool } |