mirror of
https://github.com/ankitects/anki.git
synced 2026-01-12 21:44:01 -05:00
set review limit to 9999 on open
This commit is contained in:
parent
307ab52c1c
commit
628bfe24a7
2 changed files with 8 additions and 2 deletions
|
|
@ -315,7 +315,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
</SettingTitle>
|
</SettingTitle>
|
||||||
</SpinBoxFloatRow>
|
</SpinBoxFloatRow>
|
||||||
|
|
||||||
<button class="btn btn-primary" on:click={() => workloadModal?.show()}>
|
<button
|
||||||
|
class="btn btn-primary"
|
||||||
|
on:click={() => {
|
||||||
|
simulateFsrsRequest.reviewLimit = 9999;
|
||||||
|
workloadModal?.show();
|
||||||
|
}}
|
||||||
|
>
|
||||||
{tr.deckConfigFsrsDesiredRetentionHelpMeDecideExperimental()}
|
{tr.deckConfigFsrsDesiredRetentionHelpMeDecideExperimental()}
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -405,7 +405,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
<SpinBoxRow
|
<SpinBoxRow
|
||||||
bind:value={simulateFsrsRequest.reviewLimit}
|
bind:value={simulateFsrsRequest.reviewLimit}
|
||||||
defaultValue={$config.reviewsPerDay}
|
defaultValue={workload ? 9999 : $config.reviewsPerDay}
|
||||||
min={0}
|
min={0}
|
||||||
max={9999}
|
max={9999}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue