Decrease debounce on search to 150ms

This commit is contained in:
Liam Dyer
2020-04-17 12:37:37 -04:00
parent cfbd8ef9db
commit b114754da7

View File

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