diff options
| author | Fuwn <[email protected]> | 2024-01-31 08:09:40 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-31 08:09:40 -0800 |
| commit | a1a9bd7e08397e7a98a33a249024b6a2e7e08b36 (patch) | |
| tree | fe19095cf84b02a346c81e68ddadaa17b952df92 /src/routes/tools/+page.svelte | |
| parent | feat(hovercover): half animation time (diff) | |
| download | due.moe-a1a9bd7e08397e7a98a33a249024b6a2e7e08b36.tar.xz due.moe-a1a9bd7e08397e7a98a33a249024b6a2e7e08b36.zip | |
feat(locale): localise birthdays
Diffstat (limited to 'src/routes/tools/+page.svelte')
| -rw-r--r-- | src/routes/tools/+page.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/tools/+page.svelte b/src/routes/tools/+page.svelte index edc18410..6dac37ec 100644 --- a/src/routes/tools/+page.svelte +++ b/src/routes/tools/+page.svelte @@ -9,7 +9,7 @@ <Picker {tool} /> -<HeadTitle route={tools[tool].name} path={`/tools?tool=${tool}`} /> +<HeadTitle route={tools[tool].name()} path={`/tools?tool=${tool}`} /> <div class="card"> <p>Select a tool to continue.</p> @@ -18,7 +18,7 @@ {#each Object.keys(tools) as t} {#if t !== 'default'} <li> - <a href={root(`/tools/${tools[t].id}`)} on:click={() => (tool = t)}>{tools[t].name}</a> + <a href={root(`/tools/${tools[t].id}`)} on:click={() => (tool = t)}>{tools[t].name()}</a> {#if tools[t].description} <blockquote>{tools[t].description}</blockquote> {/if} |