diff --git a/dashboard-ui/components/paperdialoghelper.js b/dashboard-ui/components/paperdialoghelper.js index 7cd862ed82..166bb1ae9a 100644 --- a/dashboard-ui/components/paperdialoghelper.js +++ b/dashboard-ui/components/paperdialoghelper.js @@ -2,12 +2,10 @@ function paperDialogHashHandler(dlg, hash, lockDocumentScroll) { - var isActive = true; - function onHashChange(e, data) { data = data.state; - isActive = data.hash == '#' + hash; + var isActive = data.hash == '#' + hash; if (data.direction == 'back') { if (dlg) { diff --git a/dashboard-ui/reports.html b/dashboard-ui/reports.html index bb369c727c..81751fef25 100644 --- a/dashboard-ui/reports.html +++ b/dashboard-ui/reports.html @@ -126,9 +126,6 @@ - - - diff --git a/dashboard-ui/scripts/notifications.js b/dashboard-ui/scripts/notifications.js index d1d11837bd..ecad7ddfdd 100644 --- a/dashboard-ui/scripts/notifications.js +++ b/dashboard-ui/scripts/notifications.js @@ -129,7 +129,11 @@ itemHtml += ''; - itemHtml += ''; + if (notification.Level == "Error") { + itemHtml += ''; + } else { + itemHtml += ''; + } itemHtml += ''; diff --git a/dashboard-ui/scripts/reports.js b/dashboard-ui/scripts/reports.js index 74b03b6938..a685a31e8e 100644 --- a/dashboard-ui/scripts/reports.js +++ b/dashboard-ui/scripts/reports.js @@ -133,11 +133,6 @@ html += ''; } break; - case "UnidentifiedImage": - if (rRow.IsUnidentified) { - html += '
'; - } - break; case "TagsPrimaryImage": if (!rRow.HasImageTagsPrimary) { html += ''; @@ -175,9 +170,6 @@ if (rRow.HasLockData) { html += ''; } - if (rRow.IsUnidentified) { - html += '
'; - } if (!rRow.HasLocalTrailer && rRow.RowType === "Movie") { html += ''; @@ -511,7 +503,6 @@ $('#chkMissingOverview', page).checked(query.HasOverview == false).checkboxradio('refresh'); $('#chkYearMismatch', page).checked(query.IsYearMismatched == true).checkboxradio('refresh'); - $('#chkIsUnidentified', page).checked(query.IsUnidentified == true).checkboxradio('refresh'); $('#chkIsLocked', page).checked(query.IsLocked == true).checkboxradio('refresh'); //Episodes @@ -775,14 +766,6 @@ reloadItems(page); }); - $('#chkIsUnidentified', page).on('change', function () { - - query.StartIndex = 0; - query.IsUnidentified = this.checked ? true : null; - - reloadItems(page); - }); - //Episodes $('#chkMissingEpisode', page).on('change', function () {