diff --git a/src/components/TvDetails/index.tsx b/src/components/TvDetails/index.tsx index e574209f7..e508def6c 100644 --- a/src/components/TvDetails/index.tsx +++ b/src/components/TvDetails/index.tsx @@ -42,6 +42,7 @@ import useSettings from '../../hooks/useSettings'; const messages = defineMessages({ firstAirDate: 'First Air Date', + nextAirDate: 'Next Air Date', userrating: 'User Rating', status: 'Status', originallanguage: 'Original Language', @@ -661,6 +662,21 @@ const TvDetails: React.FC = ({ tv }) => { )} + {data.nextEpisodeToAir && ( +
+ + + + + + +
+ )}
diff --git a/src/i18n/locale/en.json b/src/i18n/locale/en.json index 9b22e682b..f6d758c65 100644 --- a/src/i18n/locale/en.json +++ b/src/i18n/locale/en.json @@ -551,6 +551,7 @@ "components.TvDetails.mark4kavailable": "Mark 4K as Available", "components.TvDetails.markavailable": "Mark as Available", "components.TvDetails.network": "Network", + "components.TvDetails.nextAirDate": "Next Air Date", "components.TvDetails.opensonarr": "Open Series in Sonarr", "components.TvDetails.opensonarr4k": "Open Series in 4K Sonarr", "components.TvDetails.originallanguage": "Original Language",