mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-22 06:19:38 +02:00
chore: Disable email verification for new users, update search functionality, and improve note card display
This commit is contained in:
parent
10466f5913
commit
7c61fa3363
5 changed files with 67 additions and 63 deletions
|
@ -28,17 +28,15 @@
|
|||
|
||||
const searchGo = async (e: Event) => {
|
||||
e.preventDefault();
|
||||
let reload: boolean = false;
|
||||
|
||||
if ($page.url.pathname === '/search') {
|
||||
reload = true;
|
||||
let url = new URL(window.location.href);
|
||||
url.searchParams.set('query', query);
|
||||
goto(url.toString(), { invalidateAll: true });
|
||||
}
|
||||
|
||||
if (query) {
|
||||
await goto(`/search?query=${query}`);
|
||||
if (reload) {
|
||||
window.location.reload();
|
||||
}
|
||||
goto(`/search?query=${query}`);
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue