mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Delay retention workload info display after FSRS optimization alerts (#4066)
* Update FsrsOptions.svelte * Update CONTRIBUTORS * Make it full width too, so it doesn't resize when transitioning past 90 * Make sure the Warning appears after the alert * Update FsrsOptions.svelte * Update FsrsOptions.svelte * Update FsrsOptions.svelte
This commit is contained in:
parent
ce6497cd2b
commit
ccc9d9027a
2 changed files with 4 additions and 1 deletions
|
@ -230,6 +230,7 @@ KolbyML <https://github.com/KolbyML>
|
||||||
Adnane Taghi <dev@soleuniverse.me>
|
Adnane Taghi <dev@soleuniverse.me>
|
||||||
Spiritual Father <https://github.com/spiritualfather>
|
Spiritual Father <https://github.com/spiritualfather>
|
||||||
Emmanuel Ferdman <https://github.com/emmanuel-ferdman>
|
Emmanuel Ferdman <https://github.com/emmanuel-ferdman>
|
||||||
|
Sunong2008 <https://github.com/Sunrongguo2008>
|
||||||
Marvin Kopf <marvinkopf@outlook.com>
|
Marvin Kopf <marvinkopf@outlook.com>
|
||||||
********************
|
********************
|
||||||
|
|
||||||
|
|
|
@ -207,7 +207,9 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
}
|
}
|
||||||
if (!already_optimal) {
|
if (!already_optimal) {
|
||||||
$config.fsrsParams6 = resp.params;
|
$config.fsrsParams6 = resp.params;
|
||||||
optimized = true;
|
setTimeout(() => {
|
||||||
|
optimized = true;
|
||||||
|
}, 201);
|
||||||
}
|
}
|
||||||
if (computeParamsProgress) {
|
if (computeParamsProgress) {
|
||||||
computeParamsProgress.current = computeParamsProgress.total;
|
computeParamsProgress.current = computeParamsProgress.total;
|
||||||
|
|
Loading…
Reference in a new issue