Skip to content

Commit

Permalink
fix overflow bug
Browse files Browse the repository at this point in the history
  • Loading branch information
deuch13 committed May 17, 2024
1 parent d13eeb1 commit 0bd9b23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion explorer/src/lib/components/navbar/Navbar.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
import { createEventDispatcher, tick } from "svelte";
import { mdiClose, mdiMenu } from "@mdi/js";
import { afterNavigate } from "$app/navigation";
import { beforeNavigate, afterNavigate } from "$app/navigation";
import { Button, NavList, Select } from "$lib/dusk/components";
import { AppAnchor, AppImage, SearchNotification } from "$lib/components";
Expand Down Expand Up @@ -58,6 +58,7 @@
afterNavigate(() => {
hidden = true;
dispatch("toggleMenu", hidden);
showSearchNotification = false;
});
</script>
Expand Down

0 comments on commit 0bd9b23

Please sign in to comment.