We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbcfb81 commit b283763Copy full SHA for b283763
app/components/Header/SearchBox.vue
@@ -34,7 +34,7 @@ const updateUrlQuery = debounce((value: string) => {
34
}
35
}, 250)
36
37
-watch(searchQuery, (value) => {
+watch(searchQuery, value => {
38
if (route.name === 'search') {
39
updateUrlQuery(value)
40
@@ -43,7 +43,7 @@ watch(searchQuery, (value) => {
43
// Sync input with URL when navigating (e.g., back button)
44
watch(
45
() => route.query.q,
46
- (urlQuery) => {
+ urlQuery => {
47
if (pagesWithLocalFilter.has(route.name)) {
48
return
49
0 commit comments