Add settings for max depth in thread

This commit is contained in:
Tusooa Zhu 2021-08-07 20:14:14 -04:00
parent ff5f69b8fd
commit 2e54cf12c7
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
4 changed files with 26 additions and 6 deletions

View file

@ -161,6 +161,19 @@
{{ $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>
<li>
<ChoiceSetting
id="mentionLinkDisplay"