diff options
| author | Fuwn <[email protected]> | 2026-01-23 01:57:27 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-23 01:57:27 -0800 |
| commit | 5317c03ac16e68b84ef54a9c07ab04b6eae3d601 (patch) | |
| tree | 18cce9638638c46a1beec56758378c1240a2a361 /src/lib/CommandPalette/CommandPalette.svelte | |
| parent | fix(deps): Add missing fast-levenshtein dependency (diff) | |
| download | due.moe-5317c03ac16e68b84ef54a9c07ab04b6eae3d601.tar.xz due.moe-5317c03ac16e68b84ef54a9c07ab04b6eae3d601.zip | |
fix(html): Replace self-closing non-void HTML elements with proper closing tags
Diffstat (limited to 'src/lib/CommandPalette/CommandPalette.svelte')
| -rw-r--r-- | src/lib/CommandPalette/CommandPalette.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/CommandPalette/CommandPalette.svelte b/src/lib/CommandPalette/CommandPalette.svelte index c984601d..77302d5b 100644 --- a/src/lib/CommandPalette/CommandPalette.svelte +++ b/src/lib/CommandPalette/CommandPalette.svelte @@ -140,7 +140,7 @@ <div class="command-palette-overlay {open ? 'fade-in' : 'fade-out'}" on:click={() => (open = false)} - /> + ></div> <div class="dropdown {open ? 'fade-in' : 'fade-out'}"> <div class="dropdown-content card card-small"> |