Fix "max depth in thread" setting

This commit is contained in:
Tusooa Zhu 2022-03-07 20:02:53 -05:00
parent 48178bdc53
commit 551b8f3690
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
6 changed files with 72 additions and 21 deletions

View file

@ -0,0 +1,20 @@
<template>
<span class="IntegerSetting">
<label :for="path">
<slot />
</label>
<input
:id="path"
class="number-input"
type="number"
step="1"
:disabled="disabled"
:min="min || 0"
:value="state"
@change="update"
>
<ModifiedIndicator :changed="isChanged" />
</span>
</template>
<script src="./integer_setting.js"></script>