1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #2952 from jellyfin/fix-livetv-video-ui

This commit is contained in:
Bill Thornton 2021-09-11 11:17:37 -04:00 committed by GitHub
commit 2abfbba544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -182,7 +182,7 @@ import { appRouter } from '../../../components/appRouter';
view.querySelector('.btnAudio').classList.add('hide');
}
if (currentItem.Chapters.length > 1) {
if (currentItem.Chapters?.length > 1) {
view.querySelector('.btnPreviousChapter').classList.remove('hide');
view.querySelector('.btnNextChapter').classList.remove('hide');
} else {