diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-14 14:36:12 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-14 14:36:12 +0200 |
commit | cfc16a6db88378f83fa3a501170fa0fc5e7d6636 (patch) | |
tree | 535c248b04e0978ffdce6123226576ebd404203b | |
parent | 7348b1fd84dee869b3c36554aea6797f09d4ceed (diff) | |
download | PeerTube-cfc16a6db88378f83fa3a501170fa0fc5e7d6636.tar.gz PeerTube-cfc16a6db88378f83fa3a501170fa0fc5e7d6636.tar.zst PeerTube-cfc16a6db88378f83fa3a501170fa0fc5e7d6636.zip |
Fix tag search on overview page
-rw-r--r-- | client/src/app/videos/video-list/video-overview.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/videos/video-list/video-overview.component.html b/client/src/app/videos/video-list/video-overview.component.html index 4150cd5e1..4dad6a6e4 100644 --- a/client/src/app/videos/video-list/video-overview.component.html +++ b/client/src/app/videos/video-list/video-overview.component.html | |||
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | <div class="section" *ngFor="let object of overview.tags"> | 13 | <div class="section" *ngFor="let object of overview.tags"> |
14 | <div class="section-title" i18n> | 14 | <div class="section-title" i18n> |
15 | <a routerLink="/search" [queryParams]="{ tagOneOf: [ object.tag ] }">{{ object.tag }}</a> | 15 | <a routerLink="/search" [queryParams]="{ tagsOneOf: [ object.tag ] }">{{ object.tag }}</a> |
16 | </div> | 16 | </div> |
17 | 17 | ||
18 | <my-video-miniature *ngFor="let video of object.videos" [video]="video" [user]="user"></my-video-miniature> | 18 | <my-video-miniature *ngFor="let video of object.videos" [video]="video" [user]="user"></my-video-miniature> |