Skip to content

Commit b283763

Browse files
autofix-ci[bot]gameroman
authored andcommitted
[autofix.ci] apply automated fixes
1 parent bbcfb81 commit b283763

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/components/Header/SearchBox.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const updateUrlQuery = debounce((value: string) => {
3434
}
3535
}, 250)
3636
37-
watch(searchQuery, (value) => {
37+
watch(searchQuery, value => {
3838
if (route.name === 'search') {
3939
updateUrlQuery(value)
4040
}
@@ -43,7 +43,7 @@ watch(searchQuery, (value) => {
4343
// Sync input with URL when navigating (e.g., back button)
4444
watch(
4545
() => route.query.q,
46-
(urlQuery) => {
46+
urlQuery => {
4747
if (pagesWithLocalFilter.has(route.name)) {
4848
return
4949
}

0 commit comments

Comments
 (0)