Skip to content

Commit

Permalink
fix: adjust debounce for header
Browse files Browse the repository at this point in the history
  • Loading branch information
donnyquixotic committed Dec 14, 2023
1 parent 5731b43 commit 020a0c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/HeaderSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default defineComponent({
isLoading.value = false;
};
const onInput = debounce(fetchData, 100);
const onInput = debounce(fetchData, 200);
watch(inputValue, onInput);
Expand Down

0 comments on commit 020a0c4

Please sign in to comment.