aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+videos/+video-watch/modal/video-share.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+videos/+video-watch/modal/video-share.component.ts')
-rw-r--r--client/src/app/+videos/+video-watch/modal/video-share.component.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/client/src/app/+videos/+video-watch/modal/video-share.component.ts b/client/src/app/+videos/+video-watch/modal/video-share.component.ts
index b42b775c1..23c562273 100644
--- a/client/src/app/+videos/+video-watch/modal/video-share.component.ts
+++ b/client/src/app/+videos/+video-watch/modal/video-share.component.ts
@@ -21,6 +21,7 @@ type Customizations = {
21 title: boolean 21 title: boolean
22 warningTitle: boolean 22 warningTitle: boolean
23 controls: boolean 23 controls: boolean
24 peertubeLink: boolean
24} 25}
25 26
26@Component({ 27@Component({
@@ -65,7 +66,8 @@ export class VideoShareComponent {
65 // Embed options 66 // Embed options
66 title: true, 67 title: true,
67 warningTitle: true, 68 warningTitle: true,
68 controls: true 69 controls: true,
70 peertubeLink: true
69 } 71 }
70 72
71 this.modalService.open(this.modal, { centered: true }) 73 this.modalService.open(this.modal, { centered: true })
@@ -120,7 +122,8 @@ export class VideoShareComponent {
120 122
121 title: this.customizations.title, 123 title: this.customizations.title,
122 warningTitle: this.customizations.warningTitle, 124 warningTitle: this.customizations.warningTitle,
123 controls: this.customizations.controls 125 controls: this.customizations.controls,
126 peertubeLink: this.customizations.peertubeLink
124 } 127 }
125 } 128 }
126} 129}