From b114754da7a302a496ba1758bb41341d89fffabc Mon Sep 17 00:00:00 2001 From: Liam Dyer Date: Fri, 17 Apr 2020 12:37:37 -0400 Subject: [PATCH] Decrease debounce on search to 150ms --- pages/search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/search.vue b/pages/search.vue index 987d9e5..c3b34aa 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), } - }, 500) + }, 150) }, searchInput(searchInput) { this.resources = this.$store.getters['data/findBySearchInputs'](searchInput.keywords, searchInput.tags)