diff options
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 () { |