diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/tools/+page.svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/tools/+page.svelte b/src/routes/tools/+page.svelte index b55b7e7d..356261e2 100644 --- a/src/routes/tools/+page.svelte +++ b/src/routes/tools/+page.svelte @@ -51,8 +51,9 @@ <blockquote> Did you mean "<a - href={`?tool=${suggestion}`} + href={`#`} style={suggestion === '...' ? 'pointer-events: none; color: inherit;' : ''} + on:click={() => (tool = suggestion)} > {suggestion === '...' ? '...' : tools[suggestion]}</a >"? |