Increase the debounce of Issue Suggestions

This increases the debounce for issue suggestions requests to `1000ms`.
This is to reduce the number of requests that we send.
This commit is contained in:
Phil Hughes 2018-12-11 09:43:37 +00:00
parent 85f430cb3c
commit 8bf4e6a9fc
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ export default {
apollo: {
issues: {
query,
debounce: 250,
debounce: 1000,
skip() {
return this.isSearchEmpty;
},