diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 7064c6885..bc00dc432 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -243,6 +243,7 @@ Lee Doughty <32392044+leedoughty@users.noreply.github.com> memchr Max Romanowski Aldlss +Hannanilsenn ******************** 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 4a9738831..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