diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2021-09-05 16:35:47 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:19:31 -0500 |
| commit | 863255d52fdcbbabe45c86c7e36ebafc0f7e1c53 (patch) | |
| tree | 242a0d6d03d80632c34e7b8f66c4482afdfafca8 /src/components/conversation/conversation.vue | |
| parent | c4bd004cbcde96aa438d81c77d00099b1b8937b4 (diff) | |
Make position of other replies button a pref
Diffstat (limited to 'src/components/conversation/conversation.vue')
| -rw-r--r-- | src/components/conversation/conversation.vue | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index f0eb88c1..b3d97075 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -66,13 +66,14 @@ :profile-user-id="profileUserId" class="conversation-status status-fadein panel-body" - :simple="treeViewIsSimple" + :simple-tree="treeViewIsSimple" :toggle-thread-display="toggleThreadDisplay" :thread-display-status="threadDisplayStatus" :show-thread-recursively="showThreadRecursively" :total-reply-count="totalReplyCount" :total-reply-depth="totalReplyDepth" - :dive="(!treeViewIsSimple) ? () => diveIntoStatus(status.id) : null" + :show-other-replies-as-button="showOtherRepliesButtonInsideStatus" + :dive="() => diveIntoStatus(status.id)" :controlled-showing-tall="statusContentProperties[status.id].showingTall" :controlled-expanding-subject="statusContentProperties[status.id].expandingSubject" @@ -85,7 +86,7 @@ @toggleExpanded="toggleExpanded" /> <div - v-if="getReplies(status.id).length > 1" + v-if="showOtherRepliesButtonBelowStatus && getReplies(status.id).length > 1" class="thread-ancestor-dive-box" > <div |
