fix(ui): hide null dates in episodes list (#3035)

This commit is contained in:
Danshil Kokil Mungur
2022-09-19 20:11:16 +04:00
committed by GitHub
parent 16cb53f703
commit 7404d68143
4 changed files with 6 additions and 3 deletions

View File

@@ -191,7 +191,7 @@ export interface TmdbVideo {
export interface TmdbTvEpisodeResult {
id: number;
air_date: string;
air_date: string | null;
episode_number: number;
name: string;
overview: string;

View File

@@ -29,7 +29,7 @@ import type { Video } from './Movie';
interface Episode {
id: number;
name: string;
airDate: string;
airDate: string | null;
episodeNumber: number;
overview: string;
productionCode: string;