diff options
author | Chocobozzz <me@florianbigard.com> | 2022-08-11 15:28:11 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-08-11 15:28:11 +0200 |
commit | de61544582726713c965d3369902f4a464f72e20 (patch) | |
tree | d66d87bb7d633906e1a36c4e72ee7109316db713 /client/src/app/+admin | |
parent | 2a95b88477a547c319108c0bab8692624df6804c (diff) | |
download | PeerTube-de61544582726713c965d3369902f4a464f72e20.tar.gz PeerTube-de61544582726713c965d3369902f4a464f72e20.tar.zst PeerTube-de61544582726713c965d3369902f4a464f72e20.zip |
Add plugin hooks/placeholder to share modal
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts b/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts index 033305a2b..8d67e9beb 100644 --- a/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts +++ b/client/src/app/+admin/moderation/video-block-list/video-block-list.component.ts | |||
@@ -145,15 +145,15 @@ export class VideoBlockListComponent extends RestTable implements OnInit { | |||
145 | } | 145 | } |
146 | 146 | ||
147 | getVideoEmbed (entry: VideoBlacklist) { | 147 | getVideoEmbed (entry: VideoBlacklist) { |
148 | return buildVideoOrPlaylistEmbed( | 148 | return buildVideoOrPlaylistEmbed({ |
149 | decorateVideoLink({ | 149 | embedUrl: decorateVideoLink({ |
150 | url: buildVideoEmbedLink(entry.video, environment.originServerUrl), | 150 | url: buildVideoEmbedLink(entry.video, environment.originServerUrl), |
151 | 151 | ||
152 | title: false, | 152 | title: false, |
153 | warningTitle: false | 153 | warningTitle: false |
154 | }), | 154 | }), |
155 | entry.video.name | 155 | embedTitle: entry.video.name |
156 | ) | 156 | }) |
157 | } | 157 | } |
158 | 158 | ||
159 | protected reloadData () { | 159 | protected reloadData () { |