mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
redo playlist page
This commit is contained in:
parent
214e8f1e1e
commit
fb05bbd6b5
6 changed files with 87 additions and 197 deletions
|
@ -794,7 +794,7 @@
|
|||
return "photos.html?parentId=" + id;
|
||||
}
|
||||
if (item.Type == "Playlist") {
|
||||
return "playlistedit.html?id=" + id;
|
||||
return "itemdetails.html?id=" + id;
|
||||
}
|
||||
if (item.Type == "TvChannel") {
|
||||
return "itemdetails.html?id=" + id;
|
||||
|
@ -3092,6 +3092,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
if (item.CumulativeRunTimeTicks && item.Type != "Series" && item.Type != "Season") {
|
||||
|
||||
miscInfo.push(Dashboard.getDisplayTime(item.CumulativeRunTimeTicks));
|
||||
}
|
||||
|
||||
if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") {
|
||||
miscInfo.push(item.OfficialRating);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue