diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index f26e5357de..4a026739f6 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -441,7 +441,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { .thumbDetailImageContainer img { max-width: 360px; - max-height: 360px; + max-height: 203px; } .squareDetailImageContainer img { diff --git a/dashboard-ui/scripts/syncactivity.js b/dashboard-ui/scripts/syncactivity.js index 621347efdc..8aadb2a3ac 100644 --- a/dashboard-ui/scripts/syncactivity.js +++ b/dashboard-ui/scripts/syncactivity.js @@ -42,7 +42,7 @@ var html = ''; - html += "
"; + html += "
"; html += '
'; html += '
'; @@ -121,9 +121,9 @@ textLines.push(job.Name); if (job.ItemCount == 1) { - textLines.push(job.ItemCount + ' item'); + textLines.push(Globalize.translate('ValueItemCount', job.ItemCount)); } else { - textLines.push(job.ItemCount + ' items'); + textLines.push(Globalize.translate('ValueItemCountPlural', job.ItemCount)); } if (!job.ParentName) { @@ -218,6 +218,7 @@ var card = $(elem).parents('.card'); var page = $(elem).parents('.page'); var id = card.attr('data-id'); + var status = card.attr('data-status'); $('.jobMenu', page).popup("close").remove(); @@ -226,7 +227,11 @@ html += '';