mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #592 - Add options to import missing and future episodes
This commit is contained in:
parent
6d4e555bb8
commit
b23426bb93
13 changed files with 167 additions and 18 deletions
|
@ -842,6 +842,10 @@
|
|||
},
|
||||
getNewIndicatorHtml: function (item) {
|
||||
|
||||
if (item.LocationType == 'Virtual') {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (item.Type == "Season") {
|
||||
if (item.RecursiveUnplayedItemCount) {
|
||||
return '<div class="posterRibbon">' + item.RecursiveUnplayedItemCount + ' New</div>';
|
||||
|
@ -1785,7 +1789,7 @@
|
|||
|
||||
renderStudios: function (elem, item, context) {
|
||||
|
||||
if (item.Studios && item.Studios.length) {
|
||||
if (item.Studios && item.Studios.length && item.Type != "Series") {
|
||||
|
||||
var prefix = item.Studios.length > 1 ? "Studios" : "Studio";
|
||||
var html = prefix + ': ';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue