Reduce debounce time to 100ms

This commit is contained in:
Liam Dyer
2020-04-17 13:01:11 -04:00
parent ee06cb0caf
commit 3a4f384517

View File

@@ -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)