aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/header/search-typeahead.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/header/search-typeahead.component.html')
-rw-r--r--client/src/app/header/search-typeahead.component.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/src/app/header/search-typeahead.component.html b/client/src/app/header/search-typeahead.component.html
index 428246585..0c9df618e 100644
--- a/client/src/app/header/search-typeahead.component.html
+++ b/client/src/app/header/search-typeahead.component.html
@@ -24,14 +24,14 @@
24 </div> 24 </div>
25 25
26 <!-- search instructions, when search input is empty --> 26 <!-- search instructions, when search input is empty -->
27 <div *ngIf="showInstructions" id="typeahead-instructions" class="overflow-hidden"> 27 <div *ngIf="areInstructionsDisplayed" id="typeahead-instructions" class="overflow-hidden">
28 <div class="d-flex justify-content-between"> 28 <div class="d-flex justify-content-between">
29 <label class="small-title" i18n>Advanced search</label> 29 <label class="small-title" i18n>Advanced search</label>
30 <div class="advanced-search-status c-help"> 30 <div class="advanced-search-status c-help">
31 <span [ngClass]="anyURI ? 'text-success' : 'text-muted'" i18n-title title="Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows."> 31 <span [ngClass]="canSearchAnyURI ? 'text-success' : 'text-muted'" i18n-title title="Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows.">
32 <span *ngIf="anyURI" class="mr-1" i18n>any instance</span> 32 <span *ngIf="canSearchAnyURI" class="mr-1" i18n>any instance</span>
33 <span *ngIf="!anyURI" class="mr-1" i18n>only followed instances</span> 33 <span *ngIf="!canSearchAnyURI" class="mr-1" i18n>only followed instances</span>
34 <i [ngClass]="anyURI ? 'glyphicon glyphicon-ok-sign' : 'glyphicon glyphicon-exclamation-sign'"></i> 34 <i [ngClass]="canSearchAnyURI ? 'glyphicon glyphicon-ok-sign' : 'glyphicon glyphicon-exclamation-sign'"></i>
35 </span> 35 </span>
36 </div> 36 </div>
37 </div> 37 </div>