aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/modal/video-support.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-12-30 10:33:06 +0100
committerChocobozzz <me@florianbigard.com>2019-12-30 10:40:10 +0100
commit1f3a605e10a6e5fc820f9287a382a11d6dca41b4 (patch)
treed5e021f7001db5407d6b7e057374eac04f591ae2 /client/src/app/videos/+video-watch/modal/video-support.component.ts
parentda69b88638914755900b26bf55482c9d6846e42c (diff)
downloadPeerTube-1f3a605e10a6e5fc820f9287a382a11d6dca41b4.tar.gz
PeerTube-1f3a605e10a6e5fc820f9287a382a11d6dca41b4.tar.zst
PeerTube-1f3a605e10a6e5fc820f9287a382a11d6dca41b4.zip
Fix support modal title
Diffstat (limited to 'client/src/app/videos/+video-watch/modal/video-support.component.ts')
-rw-r--r--client/src/app/videos/+video-watch/modal/video-support.component.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/app/videos/+video-watch/modal/video-support.component.ts b/client/src/app/videos/+video-watch/modal/video-support.component.ts
index 027b54efb..b56a51fbf 100644
--- a/client/src/app/videos/+video-watch/modal/video-support.component.ts
+++ b/client/src/app/videos/+video-watch/modal/video-support.component.ts
@@ -2,7 +2,6 @@ import { Component, Input, ViewChild } from '@angular/core'
2import { VideoDetails } from '../../../shared/video/video-details.model' 2import { VideoDetails } from '../../../shared/video/video-details.model'
3import { NgbModal } from '@ng-bootstrap/ng-bootstrap' 3import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
4import { MarkdownService } from '@app/shared/renderer' 4import { MarkdownService } from '@app/shared/renderer'
5import { User } from '@app/shared'
6 5
7@Component({ 6@Component({
8 selector: 'my-video-support', 7 selector: 'my-video-support',
@@ -11,7 +10,6 @@ import { User } from '@app/shared'
11}) 10})
12export class VideoSupportComponent { 11export class VideoSupportComponent {
13 @Input() video: VideoDetails = null 12 @Input() video: VideoDetails = null
14 @Input() user: User = null
15 13
16 @ViewChild('modal', { static: true }) modal: NgbModal 14 @ViewChild('modal', { static: true }) modal: NgbModal
17 15