diff --git a/dashboard-ui/reports.html b/dashboard-ui/reports.html index fe9317b9f9..0d43b1d3b1 100644 --- a/dashboard-ui/reports.html +++ b/dashboard-ui/reports.html @@ -4,7 +4,7 @@ Emby -
+
diff --git a/dashboard-ui/scripts/htmlmediarenderer.js b/dashboard-ui/scripts/htmlmediarenderer.js index 404c2c66e8..b7b1a13699 100644 --- a/dashboard-ui/scripts/htmlmediarenderer.js +++ b/dashboard-ui/scripts/htmlmediarenderer.js @@ -264,7 +264,7 @@ $(elem).one("loadedmetadata", onLoadedMetadata); } } - alert(val); + currentSrc = val; }; diff --git a/dashboard-ui/scripts/reports.js b/dashboard-ui/scripts/reports.js index 2e6e48360b..25ceeb85f4 100644 --- a/dashboard-ui/scripts/reports.js +++ b/dashboard-ui/scripts/reports.js @@ -127,29 +127,29 @@ break; case "StatusImage": if (rRow.HasLockData) { - html += ''; + html += ''; } if (rRow.IsUnidentified) { html += '
'; } if (!rRow.HasLocalTrailer && rRow.RowType === "Movie") { - html += ''; + html += ''; } if (!rRow.HasImageTagsPrimary) { - html += ''; + html += ''; } if (!rRow.HasImageTagsBackdrop) { if (rRow.RowType !== "Episode" && rRow.RowType !== "Season" && rRow.MediaType !== "Audio" && rRow.RowType !== "TvChannel" && rRow.RowType !== "MusicAlbum") { - html += ''; + html += ''; } } if (!rRow.HasImageTagsLogo) { if (rRow.RowType === "Movie" || rRow.RowType === "Trailer" || rRow.RowType === "Series" || rRow.RowType === "MusicArtist" || rRow.RowType === "BoxSet") { - html += ''; + html += ''; } } break;