mirror of
https://github.com/ankitects/anki.git
synced 2025-12-22 11:22:58 -05: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