feature/searchbar-enhance #17

Merged
ilia merged 48 commits from feature/searchbar-enhance into main 2026-01-18 14:04:53 +00:00
Showing only changes of commit ad18a19c4b - Show all commits

View File

@@ -12,13 +12,12 @@ import type { Snippet } from 'svelte';
interface Props {
name: string;
slug: string;
id: string;
className?: string;
children?: Snippet;
}
let { name, slug, id, className, children }: Props = $props();
let { name, id, className, children }: Props = $props();
let element: Element;
$effect(() => {