diff --git a/dashboard-ui/boxset.html b/dashboard-ui/boxset.html
index 9d5c623c19..76ff4afc5d 100644
--- a/dashboard-ui/boxset.html
+++ b/dashboard-ui/boxset.html
@@ -1,40 +1,40 @@
-
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
-
-
-
+
+
+
+
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
diff --git a/dashboard-ui/scripts/boxset.js b/dashboard-ui/scripts/boxset.js
index 28fa96cc58..01a880e568 100644
--- a/dashboard-ui/scripts/boxset.js
+++ b/dashboard-ui/scripts/boxset.js
@@ -255,28 +255,28 @@
var userData = item.UserData || {};
- //played/unplayed
- if (userData.Played) {
- html += '
';
- } else {
- html += '
';
- }
-
- if (typeof userData.Likes == "undefined") {
- html += '
';
- html += '
';
+ if (typeof userData.Likes == "undefined") {
+ html += '';
+ html += '';
} else if (userData.Likes) {
- html += '
';
- html += '
';
+ html += '';
+ html += '';
} else {
- html += '
';
- html += '
';
+ html += '';
+ html += '';
}
if (userData.IsFavorite) {
- html += '
';
+ html += '';
} else {
- html += '
';
+ html += '';
+ }
+
+ //played/unplayed
+ if (userData.Played) {
+ html += '';
+ } else {
+ html += '';
}
$('#itemRatings', page).html(html);