Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-12-11 12:43:37 +0300
committerPhil Hughes <me@iamphill.com>2018-12-11 12:43:37 +0300
commit8bf4e6a9fcff55ca48c424120657cdb7fc9b7841 (patch)
tree0ffaa5db8060a3bbb1a6df60627e846a3ad10d85 /app/assets/javascripts/issuable_suggestions
parent85f430cb3cde4ff8c4d24c1b2a426670e38dd44f (diff)
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.
Diffstat (limited to 'app/assets/javascripts/issuable_suggestions')
-rw-r--r--app/assets/javascripts/issuable_suggestions/components/app.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/issuable_suggestions/components/app.vue b/app/assets/javascripts/issuable_suggestions/components/app.vue
index eea0701312b..575c860851c 100644
--- a/app/assets/javascripts/issuable_suggestions/components/app.vue
+++ b/app/assets/javascripts/issuable_suggestions/components/app.vue
@@ -27,7 +27,7 @@ export default {
apollo: {
issues: {
query,
- debounce: 250,
+ debounce: 1000,
skip() {
return this.isSearchEmpty;
},