diff options
author | Matt Strapp <matt@mattstrapp.net> | 2023-09-29 10:24:43 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2023-09-29 10:24:43 -0500 |
commit | 00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5 (patch) | |
tree | 48875801b73092fa3822ed9dbf098ec9d840e40c | |
parent | Add title to missing nav (diff) | |
download | trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.tar trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.tar.gz trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.tar.bz2 trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.tar.lz trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.tar.xz trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.tar.zst trinkets-00e93f2ce1aa3a689ab8d1fc76f842d3dc0a22c5.zip |
Linky stinky
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | app/src/lib/svelte/Navigation.svelte | 2 | ||||
-rw-r--r-- | app/tsconfig.json | 7 |
2 files changed, 3 insertions, 6 deletions
diff --git a/app/src/lib/svelte/Navigation.svelte b/app/src/lib/svelte/Navigation.svelte index 231ae04..2e5ba98 100644 --- a/app/src/lib/svelte/Navigation.svelte +++ b/app/src/lib/svelte/Navigation.svelte @@ -24,7 +24,7 @@ <AppRail> <svelte:fragment slot="lead"> {#if menu} - <AppRailAnchor on:click={drawerClose} title="Close Menu" value={0}> + <AppRailAnchor on:click={drawerClose} title="Close Menu" value={0} href="javascript:;"> <svelte:fragment slot="lead"> <Icon icon={menuIcon} width="25" /> </svelte:fragment> diff --git a/app/tsconfig.json b/app/tsconfig.json index 82919d2..8cac8a3 100644 --- a/app/tsconfig.json +++ b/app/tsconfig.json @@ -9,13 +9,10 @@ "skipLibCheck": true, "sourceMap": true, "strict": true, - "types": [ - "vite-plugin-pwa/client", - "@types/wicg-file-system-access" - ] + "types": ["vite-plugin-pwa/client", "@types/wicg-file-system-access"] } // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias // // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes // from the referenced tsconfig.json - TypeScript does not merge them in -}
\ No newline at end of file +} |