From b11c1251d3aed0816a830663a53ac4c44a1e0829 Mon Sep 17 00:00:00 2001 From: bobylito Date: Fri, 3 Nov 2017 15:07:22 +0100 Subject: [PATCH] chore(searchbox): rm unused computed prop --- src/components/SearchBox.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/components/SearchBox.vue b/src/components/SearchBox.vue index 593af14cf..1155f7ff3 100644 --- a/src/components/SearchBox.vue +++ b/src/components/SearchBox.vue @@ -69,11 +69,6 @@ export default { blockClassName: 'ais-search-box', }; }, - computed: { - searchStalledClassName() { - return this.searchStore.isSearchStalled ? 'ais-search-box__stalled-search' : ''; - }, - }, methods: { onFormSubmit() { const input = this.$el.querySelector('input[type=search]');