diff options
author | Chocobozzz <me@florianbigard.com> | 2021-03-29 16:47:41 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-03-31 09:05:51 +0200 |
commit | 7f18840602b23c050bee50d096155e4ef6de087a (patch) | |
tree | 5c2130552ab9f4c26caa4c7deecbb1cf0dd377e1 /client/src/app/shared | |
parent | deb8b9cdb03213efd8f1fc4b40ab94ae499fe058 (diff) | |
download | PeerTube-7f18840602b23c050bee50d096155e4ef6de087a.tar.gz PeerTube-7f18840602b23c050bee50d096155e4ef6de087a.tar.zst PeerTube-7f18840602b23c050bee50d096155e4ef6de087a.zip |
Display channel in miniature
With some exceptions though
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-video-miniature/abstract-video-list.ts | 2 | ||||
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-miniature.component.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-video-miniature/abstract-video-list.ts b/client/src/app/shared/shared-video-miniature/abstract-video-list.ts index c13cb3748..f41648e1c 100644 --- a/client/src/app/shared/shared-video-miniature/abstract-video-list.ts +++ b/client/src/app/shared/shared-video-miniature/abstract-video-list.ts | |||
@@ -65,7 +65,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy, AfterConte | |||
65 | loadOnInit = true | 65 | loadOnInit = true |
66 | loadUserVideoPreferences = false | 66 | loadUserVideoPreferences = false |
67 | 67 | ||
68 | ownerDisplayType: OwnerDisplayType = 'account' | 68 | ownerDisplayType: OwnerDisplayType = 'auto' |
69 | displayModerationBlock = false | 69 | displayModerationBlock = false |
70 | titleTooltip: string | 70 | titleTooltip: string |
71 | displayVideoActions = true | 71 | displayVideoActions = true |
diff --git a/client/src/app/shared/shared-video-miniature/video-miniature.component.html b/client/src/app/shared/shared-video-miniature/video-miniature.component.html index e5b07896f..3a7b9677a 100644 --- a/client/src/app/shared/shared-video-miniature/video-miniature.component.html +++ b/client/src/app/shared/shared-video-miniature/video-miniature.component.html | |||
@@ -10,8 +10,8 @@ | |||
10 | <div class="video-bottom"> | 10 | <div class="video-bottom"> |
11 | <div class="video-miniature-information"> | 11 | <div class="video-miniature-information"> |
12 | <div class="d-inline-flex video-miniature-meta"> | 12 | <div class="d-inline-flex video-miniature-meta"> |
13 | <a *ngIf="displayOptions.avatar" class="avatar" [ngClass]="{ channel: displayOwnerVideoChannel() }" [routerLink]="[ '/video-channels', video.byVideoChannel ]" [title]="channelLinkTitle"> | 13 | <a *ngIf="displayOptions.avatar" class="avatar" [routerLink]="[ '/video-channels', video.byVideoChannel ]" [title]="channelLinkTitle"> |
14 | <img [src]="getAvatarUrl()" alt="" /> | 14 | <img [src]="getAvatarUrl()" alt="" [ngClass]="{ channel: displayOwnerVideoChannel() }" /> |
15 | </a> | 15 | </a> |
16 | 16 | ||
17 | <div class="w-100 d-flex flex-column"> | 17 | <div class="w-100 d-flex flex-column"> |