diff --git a/components/Search.vue b/components/Search.vue index 0b239c5..5320900 100644 --- a/components/Search.vue +++ b/components/Search.vue @@ -21,10 +21,10 @@ export default { const tags = R.filter(isTag, words) const titles = R.filter(R.compose(R.not, isTag), words) console.group() - console.log("words:", titles) - console.log("tags:", tags) - console.log("returned by words search:", this.$store.getters['data/findByName'](titles)) - console.log("returned by tags search:", this.$store.getters['data/findByTags'](R.map(removeFirstChar, tags))) + console.log('words:', titles) + console.log('tags:', tags) + console.log('returned by words search:', this.$store.getters['data/findByName'](titles)) + console.log('returned by tags search:', this.$store.getters['data/findByTags'](R.map(removeFirstChar, tags))) console.groupEnd() }, },