Browse Source

fix(web): search returns all value (#5210)

Alex 1 year ago
parent
commit
28a15365d6

+ 1 - 1
web/src/lib/components/shared-components/search-bar/search-bar.svelte

@@ -33,7 +33,7 @@
 
     showBigSearchBar = false;
     $isSearchEnabled = false;
-    goto(`${AppRoute.SEARCH}?${params}`);
+    goto(`${AppRoute.SEARCH}?${params}`, { invalidateAll: true });
   }
 
   const clearSearchTerm = (searchTerm: string) => {

+ 2 - 3
web/src/routes/(user)/search/+page.ts

@@ -2,11 +2,10 @@ import { authenticate } from '$lib/utils/auth';
 import { api } from '@api';
 import type { PageLoad } from './$types';
 
-export const load = (async () => {
+export const load = (async (data) => {
   const user = await authenticate();
-  const url = new URL(location.href);
+  const url = new URL(data.url.href);
   const term = url.searchParams.get('q') || url.searchParams.get('query') || undefined;
-
   const { data: results } = await api.searchApi.search({}, { params: url.searchParams });
 
   return {