Some small fixes, and more automation tests to cover the breaking scenario from earlier

This commit is contained in:
tidusjar 2021-03-22 16:48:33 +00:00
commit 9109350f2e
8 changed files with 233 additions and 147 deletions

View file

@ -1,7 +1,10 @@
import { EpisodeRequestModal } from "./EpisodeRequestModal";
export class DiscoverCard {
private id: string;
private movie: boolean;
episodeRequestModal = new EpisodeRequestModal();
constructor(id: string, movie: boolean) {
this.id = id;
this.movie = movie;