Skip to content

Commit

Permalink
fix(Link.vue): correct property assignment for searchText value
Browse files Browse the repository at this point in the history
  • Loading branch information
kakde-sandeep authored Mar 4, 2025
1 parent c8d52d5 commit 7273afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const reloadOptions = (searchTextVal) => {
const handleQueryUpdate = debounce((newQuery) => {
const val = newQuery || ""
if (searchText.value === val) return
searchText.val = val
searchText.value = val
reloadOptions(val)
}, 300)
Expand Down

0 comments on commit 7273afa

Please sign in to comment.