diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-30 08:50:20 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-30 08:50:20 +0200 |
commit | d4f0b2ecec221b6cdd75b5d87ba800c6301a15df (patch) | |
tree | 889b03153b4eac35f455ae75c9b08093b2870282 /client/src/app/shared | |
parent | 8d64a72b4cbd12b01ad4c689f210d219dd91fde3 (diff) | |
download | PeerTube-d4f0b2ecec221b6cdd75b5d87ba800c6301a15df.tar.gz PeerTube-d4f0b2ecec221b6cdd75b5d87ba800c6301a15df.tar.zst PeerTube-d4f0b2ecec221b6cdd75b5d87ba800c6301a15df.zip |
Relax watch CSS
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-miniature.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
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 7765d5be7..f51c298f2 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 | |||
@@ -11,12 +11,12 @@ | |||
11 | <div class="video-miniature-information"> | 11 | <div class="video-miniature-information"> |
12 | <div class="d-flex video-miniature-meta"> | 12 | <div class="d-flex video-miniature-meta"> |
13 | <my-actor-avatar | 13 | <my-actor-avatar |
14 | *ngIf="displayOptions.avatar && displayOwnerVideoChannel()" [title]="channelLinkTitle" | 14 | *ngIf="displayOptions.avatar && displayOwnerVideoChannel() && !displayAsRow" [title]="channelLinkTitle" |
15 | [channel]="video.channel" [size]="actorImageSize" [internalHref]="[ '/c', video.byVideoChannel ]" | 15 | [channel]="video.channel" [size]="actorImageSize" [internalHref]="[ '/c', video.byVideoChannel ]" |
16 | ></my-actor-avatar> | 16 | ></my-actor-avatar> |
17 | 17 | ||
18 | <my-actor-avatar | 18 | <my-actor-avatar |
19 | *ngIf="displayOptions.avatar && displayOwnerAccount()" [title]="channelLinkTitle" | 19 | *ngIf="displayOptions.avatar && displayOwnerAccount() && !displayAsRow" [title]="channelLinkTitle" |
20 | [account]="video.account" [size]="actorImageSize" [internalHref]="[ '/c', video.byVideoChannel ]" | 20 | [account]="video.account" [size]="actorImageSize" [internalHref]="[ '/c', video.byVideoChannel ]" |
21 | ></my-actor-avatar> | 21 | ></my-actor-avatar> |
22 | 22 | ||