diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-16 22:13:07 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-16 22:13:07 +0100 |
commit | a0dedc02ca870a31298eb35d5105a1ebc34dbb4a (patch) | |
tree | ca4db4ff9aa0576e22cb3db853a3a4643f9a12b6 /client/src/app/+video-channels/video-channels.component.html | |
parent | 2de7f588eb7185525cc8687872fed443a24fd27b (diff) | |
download | PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.tar.gz PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.tar.zst PeerTube-a0dedc02ca870a31298eb35d5105a1ebc34dbb4a.zip |
(consistency) channel nameWithHost copy button, comment avatar link
Diffstat (limited to 'client/src/app/+video-channels/video-channels.component.html')
-rw-r--r-- | client/src/app/+video-channels/video-channels.component.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.html b/client/src/app/+video-channels/video-channels.component.html index 600b7a365..f8b7fa583 100644 --- a/client/src/app/+video-channels/video-channels.component.html +++ b/client/src/app/+video-channels/video-channels.component.html | |||
@@ -7,7 +7,13 @@ | |||
7 | <div class="actor-info"> | 7 | <div class="actor-info"> |
8 | <div class="actor-names"> | 8 | <div class="actor-names"> |
9 | <div class="actor-display-name">{{ videoChannel.displayName }}</div> | 9 | <div class="actor-display-name">{{ videoChannel.displayName }}</div> |
10 | <div class="actor-name">{{ videoChannel.nameWithHost }}</div> | 10 | <div class="actor-name">{{ videoChannel.nameWithHost }} |
11 | <button ngxClipboard [cbContent]="videoChannel.nameWithHost" (click)="activateCopiedMessage()" | ||
12 | class="btn btn-outline-secondary btn-sm copy-button" | ||
13 | > | ||
14 | <span class="glyphicon glyphicon-copy"></span> | ||
15 | </button> | ||
16 | </div> | ||
11 | 17 | ||
12 | <my-subscribe-button #subscribeButton [videoChannel]="videoChannel"></my-subscribe-button> | 18 | <my-subscribe-button #subscribeButton [videoChannel]="videoChannel"></my-subscribe-button> |
13 | </div> | 19 | </div> |