mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update program display titles
This commit is contained in:
parent
befa669bc5
commit
2e4314a278
6 changed files with 25 additions and 27 deletions
|
@ -206,9 +206,10 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
|
|||
var cssClass = "listItem";
|
||||
|
||||
if (options.highlight !== false) {
|
||||
if (i % 2 === 1) {
|
||||
cssClass += ' listItem-odd';
|
||||
}
|
||||
//if (i % 2 === 1) {
|
||||
// cssClass += ' listItem-odd';
|
||||
//}
|
||||
cssClass += ' listItem-shaded';
|
||||
}
|
||||
|
||||
if (clickEntireItem) {
|
||||
|
@ -299,7 +300,7 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
|
|||
parentTitle = item.SeriesName;
|
||||
}
|
||||
|
||||
else if (item.IsSeries) {
|
||||
else if (item.IsSeries || (item.EpisodeTitle && item.Name)) {
|
||||
parentTitle = item.Name;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue