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/settings_modal/tabs/general_tab.vue | |
| parent | c4bd004cbcde96aa438d81c77d00099b1b8937b4 (diff) | |
Make position of other replies button a pref
Diffstat (limited to 'src/components/settings_modal/tabs/general_tab.vue')
| -rw-r--r-- | src/components/settings_modal/tabs/general_tab.vue | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/src/components/settings_modal/tabs/general_tab.vue b/src/components/settings_modal/tabs/general_tab.vue index f97d92c3..d5ae7810 100644 --- a/src/components/settings_modal/tabs/general_tab.vue +++ b/src/components/settings_modal/tabs/general_tab.vue @@ -161,19 +161,33 @@ {{ $t('settings.conversation_display') }} </ChoiceSetting> </li> - <li v-if="conversationDisplay !== 'linear'"> - <label for="maxDepthInThread"> - {{ $t('settings.max_depth_in_thread') }} - </label> - <input - id="maxDepthInThread" - path.number="maxDepthInThread" - class="number-input" - type="number" - min="3" - step="1" - > - </li> + <ul + v-if="conversationDisplay !== 'linear'" + class="setting-list suboptions" + > + <li> + <label for="maxDepthInThread"> + {{ $t('settings.max_depth_in_thread') }} + </label> + <input + id="maxDepthInThread" + path.number="maxDepthInThread" + class="number-input" + type="number" + min="3" + step="1" + > + </li> + <li> + <ChoiceSetting + id="conversationOtherRepliesButton" + path="conversationOtherRepliesButton" + :options="conversationOtherRepliesButtonOptions" + > + {{ $t('settings.conversation_other_replies_button') }} + </ChoiceSetting> + </li> + </ul> <li> <ChoiceSetting id="mentionLinkDisplay" |
