diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 2c5a14e845..0261035026 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -162,8 +162,8 @@ html += '
'; - if (item.SeriesName || item.Album) { - var seriesName = item.SeriesName || item.Album; + if (item.SeriesName || item.Album || item.AlbumArtist) { + var seriesName = item.SeriesName || item.Album || item.AlbumArtist; html += '
' + seriesName + '
'; } @@ -191,9 +191,9 @@ } else if (item.Type == "MusicAlbum") { - childText = item.ChildCount == 1 ? "1 Song" : item.ChildCount + " Songs"; + //childText = item.ChildCount == 1 ? "1 Song" : item.ChildCount + " Songs"; - html += '

' + childText + '

'; + //html += '

' + childText + '

'; } else if (item.Type == "Genre" || item.Type == "Studio" || item.Type == "Person" || item.Type == "Artist" || item.Type == "MusicGenre" || item.Type == "GameGenre") {