Backport pull request #7313 from jellyfin-web/release-10.11.z

Fix missing Live TV sections in experimental layout

Original-merge: 3d55ce3724bc210aec38fa8276077344384e64ae

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
theguymadmax
2025-11-17 11:14:16 -05:00
committed by thornbill
parent c796529544
commit 2a9be36c7b
-5
View File
@@ -196,7 +196,6 @@ export const getProgramSections = (): Section[] => {
apiMethod: SectionApiMethod.LiveTvPrograms,
type: SectionType.UpcomingEpisodes,
parametersOptions: {
isAiring: false,
hasAired: false,
isMovie: false,
isSports: false,
@@ -221,7 +220,6 @@ export const getProgramSections = (): Section[] => {
apiMethod: SectionApiMethod.LiveTvPrograms,
type: SectionType.UpcomingMovies,
parametersOptions: {
isAiring: false,
hasAired: false,
isMovie: true
},
@@ -242,7 +240,6 @@ export const getProgramSections = (): Section[] => {
apiMethod: SectionApiMethod.LiveTvPrograms,
type: SectionType.UpcomingSports,
parametersOptions: {
isAiring: false,
hasAired: false,
isSports: true
},
@@ -263,7 +260,6 @@ export const getProgramSections = (): Section[] => {
apiMethod: SectionApiMethod.LiveTvPrograms,
type: SectionType.UpcomingKids,
parametersOptions: {
isAiring: false,
hasAired: false,
isKids: true
},
@@ -284,7 +280,6 @@ export const getProgramSections = (): Section[] => {
apiMethod: SectionApiMethod.LiveTvPrograms,
type: SectionType.UpcomingNews,
parametersOptions: {
isAiring: false,
hasAired: false,
isNews: true
},