aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/search/search.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/search/search.component.html')
-rw-r--r--client/src/app/search/search.component.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/search/search.component.html b/client/src/app/search/search.component.html
index a0b5e6e79..9d14daa4b 100644
--- a/client/src/app/search/search.component.html
+++ b/client/src/app/search/search.component.html
@@ -3,7 +3,10 @@
3 <div class="first-line"> 3 <div class="first-line">
4 <div class="results-counter"> 4 <div class="results-counter">
5 <ng-container *ngIf="pagination.totalItems"> 5 <ng-container *ngIf="pagination.totalItems">
6 {{ pagination.totalItems | myNumberFormatter }} results for <span class="search-value">{{ currentSearch }}</span> 6 {{ pagination.totalItems | myNumberFormatter }} results
7 <span *ngIf="currentSearch">
8 for <span class="search-value">{{ currentSearch }}</span>
9 </span>
7 </ng-container> 10 </ng-container>
8 </div> 11 </div>
9 12