diff --git a/dashboard-ui/css/detailtable.css b/dashboard-ui/css/detailtable.css index 1b066fa8cb..9725f8eaef 100644 --- a/dashboard-ui/css/detailtable.css +++ b/dashboard-ui/css/detailtable.css @@ -1,6 +1,6 @@ .detailTableContainer { width: 100%; - max-width: 1000px; + max-width: 1100px; text-align: center; margin: 0 auto; } diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 20ef4413ca..23a1bffafb 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -256,6 +256,9 @@ if (options.showAlbum) { html += 'Album'; } + if (options.showArtist) { + html += 'Album Artist'; + } if (options.showArtist) { html += 'Artist'; } @@ -291,6 +294,17 @@ } } + if (options.showArtist) { + + if (item.AlbumArtist) { + + html += '' + item.AlbumArtist + ''; + + } else { + html += ''; + } + } + if (options.showArtist) { if (item.Artists && item.Artists.length) {