Skip to content

Commit

Permalink
fix: add tag directly functionality works again
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Aug 3, 2020
1 parent 0bb2a63 commit 6f6eea1
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions components/pages/posts/navigation/search/SearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,13 @@

<script>
import { mapState, mapActions, mapMutations } from 'vuex'
import {
FilterIcon,
SearchIcon,
TrashIcon,
GitlabIcon,
} from 'vue-feather-icons'
import { FilterIcon, SearchIcon, TrashIcon } from 'vue-feather-icons'
import debounce from 'lodash/debounce'
export default {
name: 'SearchBar',
components: { SearchIcon, FilterIcon, TrashIcon, GitlabIcon },
components: { SearchIcon, FilterIcon, TrashIcon },
data() {
return {
Expand Down Expand Up @@ -95,9 +90,7 @@ export default {
addSearchedTagDirectly(tag) {
this.addedTagsManager({
operation: 'add',
tag: {
name: tag,
},
value: tag,
})
},
Expand Down

0 comments on commit 6f6eea1

Please sign in to comment.