From bf36e10519267b8fbb9aacda7dcdf31d4bd3404c Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 1 Jul 2025 11:19:49 +0700 Subject: [PATCH] Hide CMRR https://forums.ankiweb.net/t/anki-25-06-beta/62271/156 --- ts/routes/deck-options/SimulatorModal.svelte | 57 ++++++++++---------- 1 file changed, 30 insertions(+), 27 deletions(-) diff --git a/ts/routes/deck-options/SimulatorModal.svelte b/ts/routes/deck-options/SimulatorModal.svelte index 09a05a653..546f840d6 100644 --- a/ts/routes/deck-options/SimulatorModal.svelte +++ b/ts/routes/deck-options/SimulatorModal.svelte @@ -395,35 +395,38 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html {/if} -
- {tr.deckConfigComputeOptimalRetention()} - + + {#if optimalRetention} + {estimatedRetention(optimalRetention)} + {#if optimalRetention - $config.desiredRetention >= 0.01} + + {/if} + {/if} + {#if computingRetention} - {tr.actionsCancel()} - {:else} - {tr.deckConfigComputeButton()} +
{computeRetentionProgressString}
{/if} - - - {#if optimalRetention} - {estimatedRetention(optimalRetention)} - {#if optimalRetention - $config.desiredRetention >= 0.01} - - {/if} - {/if} - - {#if computingRetention} -
{computeRetentionProgressString}
- {/if} -
- + +