diff options
author | Chocobozzz <me@florianbigard.com> | 2021-10-19 09:44:43 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-10-20 09:25:44 +0200 |
commit | 4beda9e12adc7b1f3b178cecd6863ebf3cf431f1 (patch) | |
tree | 6244a10b286d66c6dcd7799aee630670d0493781 /client/src/app/+my-library/+my-video-channels | |
parent | 9593a78ae1368a9ad8bb11044fce6fde2892701a (diff) | |
download | PeerTube-4beda9e12adc7b1f3b178cecd6863ebf3cf431f1.tar.gz PeerTube-4beda9e12adc7b1f3b178cecd6863ebf3cf431f1.tar.zst PeerTube-4beda9e12adc7b1f3b178cecd6863ebf3cf431f1.zip |
Add ability to view my followers
Diffstat (limited to 'client/src/app/+my-library/+my-video-channels')
-rw-r--r-- | client/src/app/+my-library/+my-video-channels/my-video-channels.component.html | 7 | ||||
-rw-r--r-- | client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html index 4c5b46d5b..bbe583971 100644 --- a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html +++ b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.html | |||
@@ -27,7 +27,12 @@ | |||
27 | <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div> | 27 | <div class="video-channel-name">{{ videoChannel.nameWithHost }}</div> |
28 | </a> | 28 | </a> |
29 | 29 | ||
30 | <div i18n class="video-channel-followers">{videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}}</div> | 30 | <a |
31 | i18n class="video-channel-followers" | ||
32 | [routerLink]="[ '/my-library', 'followers' ]" [queryParams]="{ search: 'channel:' + videoChannel.name }" | ||
33 | > | ||
34 | {videoChannel.followersCount, plural, =1 {1 subscriber} other {{{ videoChannel.followersCount }} subscribers}} | ||
35 | </a> | ||
31 | 36 | ||
32 | <div i18n class="video-channel-videos">{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</div> | 37 | <div i18n class="video-channel-videos">{videoChannel.videosCount, plural, =0 {No videos} =1 {1 video} other {{{ videoChannel.videosCount }} videos}}</div> |
33 | 38 | ||
diff --git a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss index 9ef5513b6..998e46cb2 100644 --- a/client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss +++ b/client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss | |||
@@ -54,6 +54,10 @@ my-edit-button { | |||
54 | color: $grey-actor-name; | 54 | color: $grey-actor-name; |
55 | } | 55 | } |
56 | 56 | ||
57 | .video-channel-followers { | ||
58 | color: pvar(--mainForegroundColor); | ||
59 | } | ||
60 | |||
57 | .video-channel-buttons { | 61 | .video-channel-buttons { |
58 | margin-top: 10px; | 62 | margin-top: 10px; |
59 | min-width: 190px; | 63 | min-width: 190px; |