diff --git a/dashboard-ui/mypreferenceshome.html b/dashboard-ui/mypreferenceshome.html index 21b0e8266..aafba23c3 100644 --- a/dashboard-ui/mypreferenceshome.html +++ b/dashboard-ui/mypreferenceshome.html @@ -1,4 +1,4 @@ -
+
@@ -78,10 +78,13 @@
${LabelSelectFolderGroupsHelp}
-
-
- ${OptionDisplayChannelsInline} -
${OptionDisplayChannelsInlineHelp}
+
+
+ +
${OptionDisplayChannelsInlineHelp}
@@ -105,8 +108,11 @@
-
- ${OptionHideWatchedContentFromLatestMedia} +
+
diff --git a/dashboard-ui/scripts/mypreferenceshome.js b/dashboard-ui/scripts/mypreferenceshome.js index 0857a1390..2928ad085 100644 --- a/dashboard-ui/scripts/mypreferenceshome.js +++ b/dashboard-ui/scripts/mypreferenceshome.js @@ -4,7 +4,7 @@ var folderHtml = ''; - folderHtml += '
'; + folderHtml += '
'; folderHtml += result.map(function (i) { var currentHtml = ''; @@ -16,7 +16,10 @@ var checkedHtml = isChecked ? ' checked="checked"' : ''; - currentHtml += '' + i.Name + ''; + currentHtml += ''; return currentHtml; @@ -31,7 +34,7 @@ var folderHtml = ''; - folderHtml += '
'; + folderHtml += '
'; folderHtml += result.Items.map(function (i) { var currentHtml = ''; @@ -41,7 +44,10 @@ var isChecked = user.Configuration.LatestItemsExcludes.indexOf(i.Id) == -1; var checkedHtml = isChecked ? ' checked="checked"' : ''; - currentHtml += '' + i.Name + ''; + currentHtml += ''; return currentHtml;