diff --git a/dashboard-ui/autoorganizelog.html b/dashboard-ui/autoorganizelog.html index 07b1246478..3639141499 100644 --- a/dashboard-ui/autoorganizelog.html +++ b/dashboard-ui/autoorganizelog.html @@ -12,6 +12,7 @@
${TabActivityLog} ${TabTV} + ${TabSmartMatches}
diff --git a/dashboard-ui/autoorganizetv.html b/dashboard-ui/autoorganizetv.html index 8994b352cc..934ed8ec77 100644 --- a/dashboard-ui/autoorganizetv.html +++ b/dashboard-ui/autoorganizetv.html @@ -11,6 +11,7 @@
${TabActivityLog} ${TabTV} + ${TabSmartMatches}
diff --git a/dashboard-ui/components/fileorganizer/fileorganizer.template.html b/dashboard-ui/components/fileorganizer/fileorganizer.template.html index e9f6f4b436..b5e47c978e 100644 --- a/dashboard-ui/components/fileorganizer/fileorganizer.template.html +++ b/dashboard-ui/components/fileorganizer/fileorganizer.template.html @@ -22,7 +22,7 @@
${LabelEndingEpisodeNumberHelp}
-
+

${OptionRememberOrganizeCorrection}
diff --git a/dashboard-ui/scripts/autoorganizesmart.js b/dashboard-ui/scripts/autoorganizesmart.js index 6f9a823de9..a7375696b0 100644 --- a/dashboard-ui/scripts/autoorganizesmart.js +++ b/dashboard-ui/scripts/autoorganizesmart.js @@ -33,8 +33,8 @@ if (infos.length > 0) { infos = infos.sort(function (a, b) { - a = a.OrganizerType + " " + a.Name; - b = b.OrganizerType + " " + b.Name; + a = a.OrganizerType + " " + (a.DisplayName || a.ItemName); + b = b.OrganizerType + " " + (b.DisplayName || b.ItemName); if (a == b) { return 0; @@ -64,7 +64,7 @@ html += ''; - html += "
" + info.DisplayName + "
"; + html += "
" + (info.DisplayName || info.ItemName) + "
"; html += info.MatchStrings.map(function (m) { return "
" + m + "
";