Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Oct 18, 2024
1 parent 6d65158 commit 6dfe40f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/api/elasticsearch.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { find, isEqual, replace } from 'lodash'
import { isEqual, replace } from 'lodash'
import bodybuilder from 'bodybuilder'
import es from 'elasticsearch-browser'

Expand Down
3 changes: 1 addition & 2 deletions src/components/SearchResultsHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@
</template>

<script>
import { cloneDeep, compact, every, find, isEmpty, get, min } from 'lodash'
import { cloneDeep, compact, isEmpty, min } from 'lodash'
import { mapState } from 'vuex'
import settings from '@/utils/settings'
import AppliedSearchFilters from '@/components/AppliedSearchFilters'
import Pagination from '@/components/Pagination'
import features from '@/mixins/features'
Expand Down
4 changes: 2 additions & 2 deletions src/components/SearchResultsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
responsive
:busy="$wait.waiting('load results table')"
:fields="fields"
:items=" response.hits"
:items="response.hits"
class="border-bottom m-0 small search-results-table__items"
tbody-tr-class="search-results-table__items__row"
thead-tr-class="text-nowrap"
Expand Down Expand Up @@ -96,7 +96,7 @@
</template>

<script>
import { castArray, find, iteratee, startCase, uniqBy } from 'lodash'
import { castArray, iteratee, startCase, uniqBy } from 'lodash'
import { mapState } from 'vuex'
import DocumentActions from '@/components/DocumentActions'
Expand Down

0 comments on commit 6dfe40f

Please sign in to comment.