mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
Fix: min value for Additional new cards not 0
This commit is contained in:
parent
f00211df35
commit
e0bbeed0f5
1 changed files with 1 additions and 1 deletions
|
@ -477,7 +477,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
<SpinBoxRow
|
<SpinBoxRow
|
||||||
bind:value={simulateFsrsRequest.deckSize}
|
bind:value={simulateFsrsRequest.deckSize}
|
||||||
defaultValue={0}
|
defaultValue={0}
|
||||||
min={1}
|
min={0}
|
||||||
max={100000}
|
max={100000}
|
||||||
>
|
>
|
||||||
<SettingTitle on:click={() => openHelpModal("simulateFsrsReview")}>
|
<SettingTitle on:click={() => openHelpModal("simulateFsrsReview")}>
|
||||||
|
|
Loading…
Reference in a new issue