diff --git a/ftl/core/help.ftl b/ftl/core/help.ftl index 288a88671..80a08703e 100644 --- a/ftl/core/help.ftl +++ b/ftl/core/help.ftl @@ -2,8 +2,8 @@ ## Header/footer -# Field for linking to more manual details -help-for-more-info = ​ +# Link to more detailed information in the manual +help-for-more-info = For more information, see { $link } in the manual. # Tooltip for links to the manual help-open-manual-chapter = Open { $name } in the manual diff --git a/ts/lib/components/HelpModal.svelte b/ts/lib/components/HelpModal.svelte index cf6292537..e8de8e353 100644 --- a/ts/lib/components/HelpModal.svelte +++ b/ts/lib/components/HelpModal.svelte @@ -22,7 +22,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html import { type HelpItem, HelpItemScheduler } from "./types"; export let title: string; - export let url: string; + export let url: string | undefined; export let startIndex = 0; export let helpSections: HelpItem[]; export let fsrs = false; diff --git a/ts/lib/components/HelpSection.svelte b/ts/lib/components/HelpSection.svelte index b52486865..19e97c982 100644 --- a/ts/lib/components/HelpSection.svelte +++ b/ts/lib/components/HelpSection.svelte @@ -42,9 +42,7 @@
{@html renderMarkdown( tr.helpForMoreInfo({ - link: `${item.title}`, + link: `${item.title}`, }), )}
diff --git a/ts/routes/graphs/TrueRetention.svelte b/ts/routes/graphs/TrueRetention.svelte index 6fb8deccc..c94b2ab12 100644 --- a/ts/routes/graphs/TrueRetention.svelte +++ b/ts/routes/graphs/TrueRetention.svelte @@ -5,7 +5,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html