Skip to content

Commit

Permalink
fix(dsp-app): fixes no search results section (DEV-3240) (#1398)
Browse files Browse the repository at this point in the history
  • Loading branch information
irmastnt committed Jan 29, 2024
1 parent b679646 commit 60def06
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -40,7 +40,7 @@
</div>

<!-- In case of 0 result -->
<div class="list-view no-results" *ngIf="!loading && resources?.resources?.length === 0">
<div class="list-view no-results" *ngIf="!loading && numberOfAllResults === 0">
<!-- Case A: user did a fulltext search -->
<div *ngIf="search.mode === 'fulltext'">
<p>Your search - <strong> {{search.query}}</strong> - did not match any documents.</p>
Expand Down

0 comments on commit 60def06

Please sign in to comment.