Skip to content

Commit

Permalink
Updated to latest svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Dec 20, 2024
1 parent 8691e8e commit 8d554c2
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
56 changes: 28 additions & 28 deletions src/Exceptionless.Web/ClientApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/Exceptionless.Web/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@iconify-json/lucide": "^1.2.19",
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.12.1",
"@sveltejs/kit": "^2.13.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
Expand All @@ -35,20 +35,20 @@
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^4.3.0",
"eslint-plugin-perfectionist": "^4.4.0",
"eslint-plugin-svelte": "^2.46.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"svelte": "^5.14.4",
"svelte": "^5.15.0",
"svelte-check": "^4.1.1",
"swagger-typescript-api": "^13.0.23",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.3",
"vite": "^6.0.4",
"vitest": "2.1.6"
},
"dependencies": {
Expand All @@ -66,7 +66,7 @@
"mode-watcher": "^0.5.0",
"oidc-client-ts": "^3.1.0",
"pretty-ms": "^9.2.0",
"runed": "^0.20.0",
"runed": "^0.21.0",
"svelte-sonner": "^0.3.28",
"svelte-time": "^0.9.0",
"sveltekit-superforms": "^2.22.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import * as Sidebar from '$comp/ui/sidebar';
import { getGravatarFromCurrentUser } from '$features/users/gravatar.svelte';
import logoSmall from '$lib/assets/exceptionless-48.png';
import { MediaQuery } from 'runed';
import { MediaQuery } from 'svelte/reactivity';
import IconSearch from '~icons/mdi/search';
interface Props {
Expand All @@ -33,7 +33,7 @@
<Sidebar.Trigger variant="outline" class="size-9" />

<a class="ml-2 mr-14 flex dark:text-white md:min-w-[250px] lg:ml-3" href="./">
{#if isMediumScreenQuery.matches}
{#if isMediumScreenQuery.current}
<Logo class="absolute top-[0px] mr-3 h-[65px]" />
{:else}
<img alt="Exceptionless Logo" class="mr-3 h-8" src={logoSmall} />
Expand Down

0 comments on commit 8d554c2

Please sign in to comment.