aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/search/search-filters.component.html
diff options
context:
space:
mode:
authorFilip Bengtsson <me@autom.zone>2020-02-01 01:14:53 +0100
committerRigel Kent <par@rigelk.eu>2020-02-02 12:10:35 +0100
commita2e0046cc93f5963aa02c4319631e495dfefb76c (patch)
tree8d04c23f3700cf973e56b719e6b5e6384bd48296 /client/src/app/search/search-filters.component.html
parent83fcadac86da0bc6120a5b93850bb9a7fc069fba (diff)
downloadPeerTube-a2e0046cc93f5963aa02c4319631e495dfefb76c.tar.gz
PeerTube-a2e0046cc93f5963aa02c4319631e495dfefb76c.tar.zst
PeerTube-a2e0046cc93f5963aa02c4319631e495dfefb76c.zip
Clearer description of the options
This is a more clear description of what the options will do.
Diffstat (limited to 'client/src/app/search/search-filters.component.html')
-rw-r--r--client/src/app/search/search-filters.component.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/search/search-filters.component.html b/client/src/app/search/search-filters.component.html
index 07fb2c048..c275285d5 100644
--- a/client/src/app/search/search-filters.component.html
+++ b/client/src/app/search/search-filters.component.html
@@ -103,7 +103,7 @@
103 </button> 103 </button>
104 <div class="peertube-select-container"> 104 <div class="peertube-select-container">
105 <select id="category" name="category" [(ngModel)]="advancedSearch.categoryOneOf"> 105 <select id="category" name="category" [(ngModel)]="advancedSearch.categoryOneOf">
106 <option [value]="undefined" i18n>Any or no category set</option> 106 <option [value]="undefined" i18n>Display all categories</option>
107 <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option> 107 <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
108 </select> 108 </select>
109 </div> 109 </div>
@@ -116,7 +116,7 @@
116 </button> 116 </button>
117 <div class="peertube-select-container"> 117 <div class="peertube-select-container">
118 <select id="licence" name="licence" [(ngModel)]="advancedSearch.licenceOneOf"> 118 <select id="licence" name="licence" [(ngModel)]="advancedSearch.licenceOneOf">
119 <option [value]="undefined" i18n>Any or no license set</option> 119 <option [value]="undefined" i18n>Display all licenses</option>
120 <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option> 120 <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
121 </select> 121 </select>
122 </div> 122 </div>
@@ -129,7 +129,7 @@
129 </button> 129 </button>
130 <div class="peertube-select-container"> 130 <div class="peertube-select-container">
131 <select id="language" name="language" [(ngModel)]="advancedSearch.languageOneOf"> 131 <select id="language" name="language" [(ngModel)]="advancedSearch.languageOneOf">
132 <option [value]="undefined" i18n>Any or no language set</option> 132 <option [value]="undefined" i18n>Display all languages</option>
133 <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option> 133 <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
134 </select> 134 </select>
135 </div> 135 </div>