From f3e0260325aa5cf46480fcf69f2d1a71d5af2a67 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev Date: Thu, 8 Jan 2026 13:18:05 +0700 Subject: [PATCH] Fix search widget destination field not passing mode=search When clicking destination in GlobalSearchBar, now passes ?mode=search to /select-location so the selection gets saved to searchStore --- app/components/search/GlobalSearchBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/search/GlobalSearchBar.vue b/app/components/search/GlobalSearchBar.vue index 497d054..0a3835b 100644 --- a/app/components/search/GlobalSearchBar.vue +++ b/app/components/search/GlobalSearchBar.vue @@ -91,7 +91,7 @@ const goToProductSelection = () => { } const goToLocationSelection = () => { - navigateTo(localePath('/select-location')) + navigateTo(localePath('/select-location') + '?mode=search') } // Can search - need at least product selected