Browse Source
fix(search): search result display as empty after clearing field (#5283)
pull/5304/head
myml
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
3 deletions
-
client/components/common/search-results.vue
|
|
@ -14,7 +14,7 @@ |
|
|
|
.search-results-none(v-else-if='!searchIsLoading && (!results || results.length < 1)') |
|
|
|
img(src='/_assets/svg/icon-no-results.svg', alt='No Results') |
|
|
|
.subheading {{$t('common:header.searchNoResult')}} |
|
|
|
template(v-if='results && results.length > 0') |
|
|
|
template(v-if='search && search.length >= 2 && results && results.length > 0') |
|
|
|
v-subheader.white--text {{$t('common:header.searchResultsCount', { total: response.totalHits })}} |
|
|
|
v-list.search-results-items.radius-7.py-0(two-line, dense) |
|
|
|
template(v-for='(item, idx) of results') |
|
|
@ -101,8 +101,6 @@ export default { |
|
|
|
search(newValue, oldValue) { |
|
|
|
this.cursor = 0 |
|
|
|
if (!newValue || (newValue && newValue.length < 2)) { |
|
|
|
this.response.results = [] |
|
|
|
this.response.suggestions = [] |
|
|
|
this.searchIsLoading = false |
|
|
|
} else { |
|
|
|
this.searchIsLoading = true |
|
|
|