diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-31 17:32:35 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-31 17:43:39 +0200 |
commit | 4b54f1360ebb5b1aeb70544981f2721e9a03f0bb (patch) | |
tree | ff54ca875a4bb22a361a7a8befceb3eb80424114 /client/src/app/videos | |
parent | 9a629c6efbe39dfac290347670ca41b0d7100f41 (diff) | |
download | PeerTube-4b54f1360ebb5b1aeb70544981f2721e9a03f0bb.tar.gz PeerTube-4b54f1360ebb5b1aeb70544981f2721e9a03f0bb.tar.zst PeerTube-4b54f1360ebb5b1aeb70544981f2721e9a03f0bb.zip |
Fix videos overview tags section
Diffstat (limited to 'client/src/app/videos')
-rw-r--r-- | client/src/app/videos/video-list/video-overview.component.html | 4 |
1 files changed, 2 insertions, 2 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 84a4c70ee..be9db3d90 100644 --- a/client/src/app/videos/video-list/video-overview.component.html +++ b/client/src/app/videos/video-list/video-overview.component.html | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | <div class="section" *ngFor="let object of overview.categories"> | 5 | <div class="section" *ngFor="let object of overview.categories"> |
6 | <div class="section-title" i18n> | 6 | <div class="section-title" i18n> |
7 | <a routerLink="/search" [queryParams]="{ categoryOneOf: [ object.category.id ] }">Category {{ object.category.label }}</a> | 7 | <a routerLink="/search" [queryParams]="{ categoryOneOf: [ object.category.id ] }">{{ object.category.label }}</a> |
8 | </div> | 8 | </div> |
9 | 9 | ||
10 | <div> | 10 | <div> |
@@ -14,7 +14,7 @@ | |||
14 | 14 | ||
15 | <div class="section" *ngFor="let object of overview.tags"> | 15 | <div class="section" *ngFor="let object of overview.tags"> |
16 | <div class="section-title" i18n> | 16 | <div class="section-title" i18n> |
17 | <a routerLink="/search" [queryParams]="{ categoryOneOf: [ object.category.id ] }">Tag {{ object.tag }}</a> | 17 | <a routerLink="/search" [queryParams]="{ tagOneOf: [ object.tag ] }">{{ object.tag }}</a> |
18 | </div> | 18 | </div> |
19 | 19 | ||
20 | <div> | 20 | <div> |