Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
vabishaa committed May 22, 2024
2 parents ab781eb + 7b31f24 commit 4d69a9f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions components/search/DiscoverySearchResults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,11 @@ export default {
<div class="eph-results">
{{ result.content.responseSummary.numTotalResults }} result(s)
</div>
<div>
<div v-for="(filters, warningKey) in result.content?.info?.warnings" :key="warningKey">
<div v-for="(filter, index) in filters" :key="index">Ignored filters: {{ filter }}</div>
</div>
</div>
</v-expansion-panel-header>
<v-expansion-panel-content
v-if="result && result.content &&
Expand Down Expand Up @@ -226,6 +231,11 @@ export default {
<div class="eph-results">
{{ result.content.responseSummary.numTotalResults }} result(s)
</div>
<div>
<div v-for="(filters, warningKey) in result.content?.info?.warnings" :key="warningKey">
<div v-for="(filter, index) in filters" :key="index">Ignored filters: {{ filter }}</div>
</div>
</div>
<v-tooltip
v-if="!loggedIn"
bottom
Expand Down

0 comments on commit 4d69a9f

Please sign in to comment.