From b96b04f55c3af6d961d2647f979c583429bd0581 Mon Sep 17 00:00:00 2001 From: Kevin van der Werff Date: Thu, 7 Nov 2019 04:16:53 +0100 Subject: [PATCH] minor adjustments --- pages/search.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pages/search.vue b/pages/search.vue index cf87ea0..987d9e5 100644 --- a/pages/search.vue +++ b/pages/search.vue @@ -44,16 +44,14 @@ export default { this.debounceID = setTimeout(() => { const keywords = updatedChanges.query.keywords const tags = updatedChanges.query.tags - const newSearchInput = { + this.searchInput = { keywords: keywords && R.split(',', keywords), tags: tags && R.split(',', tags), } - this.searchInput = newSearchInput }, 500) }, searchInput(searchInput) { this.resources = this.$store.getters['data/findBySearchInputs'](searchInput.keywords, searchInput.tags) - console.log(this.resources) }, }, mounted() {