You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi/ClientApp/src/app/media-details/youtube-trailer.component.ts

15 lines
418 B

import { Component, Inject } from "@angular/core";
import { MatDialogRef, MAT_DIALOG_DATA } from "@angular/material";
@Component({
selector: "youtube-trailer",
templateUrl: "./youtube-trailer.component.html",
})
export class YoutubeTrailerComponent {
constructor(
public dialogRef: MatDialogRef<YoutubeTrailerComponent>,
@Inject(MAT_DIALOG_DATA) public youtubeLink: string) {}
}