]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix tag search on overview page
authorChocobozzz <me@florianbigard.com>
Fri, 14 Sep 2018 12:36:12 +0000 (14:36 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 14 Sep 2018 12:36:12 +0000 (14:36 +0200)
client/src/app/videos/video-list/video-overview.component.html

index 4150cd5e198e85167944ff271ed3fd5805efa9aa..4dad6a6e42528de4dbd01509d6c7d5e86aea3363 100644 (file)
@@ -12,7 +12,7 @@
 
   <div class="section" *ngFor="let object of overview.tags">
     <div class="section-title" i18n>
-      <a routerLink="/search" [queryParams]="{ tagOneOf: [ object.tag ] }">{{ object.tag }}</a>
+      <a routerLink="/search" [queryParams]="{ tagsOneOf: [ object.tag ] }">{{ object.tag }}</a>
     </div>
 
     <my-video-miniature *ngFor="let video of object.videos" [video]="video" [user]="user"></my-video-miniature>