From c77e9072f52a48a09c062394f5a89d0bdf6e4d75 Mon Sep 17 00:00:00 2001 From: Liam Dyer Date: Sat, 18 Apr 2020 10:17:09 -0400 Subject: [PATCH] Increase debounce time to 300ms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: wellá --- pages/search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/search.vue b/pages/search.vue index 7767d6e..c998fd8 100644 --- a/pages/search.vue +++ b/pages/search.vue @@ -48,7 +48,7 @@ export default { keywords: keywords && R.split(',', keywords), tags: tags && R.split(',', tags), } - }, 100) + }, 300) }, searchInput(searchInput) { this.resources = this.$store.getters['data/findBySearchInputs'](searchInput.keywords, searchInput.tags)