From 3a4f384517aadf7920bf4829beb8fb8d068f4704 Mon Sep 17 00:00:00 2001 From: Liam Dyer Date: Fri, 17 Apr 2020 13:01:11 -0400 Subject: [PATCH] Reduce debounce time to 100ms --- pages/search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/search.vue b/pages/search.vue index b9bdc2e..7767d6e 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), } - }, 150) + }, 100) }, searchInput(searchInput) { this.resources = this.$store.getters['data/findBySearchInputs'](searchInput.keywords, searchInput.tags)