diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 53dc3c75cc..fa6030abd8 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -15,7 +15,7 @@ var href = item.url || (item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id); - var showText = options.showTitle || !hasPrimaryImage || (item.Type !== 'Movie' && item.Type !== 'Series' && item.Type !== 'Season' && item.Type !== 'Trailer'); + var showText = options.showTitle || !hasPrimaryImage; var cssClass = showText ? "posterViewItem" : "posterViewItem posterViewItemWithNoText"; diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index c8ffe02d8f..fe531b8c58 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -56,7 +56,13 @@ html += ""; } - $('#ulInstalledPlugins', page).html(html).listview('refresh'); + if (plugins.length == 0 || !plugins.length) { + html += '
  • You have no plugins installed. Browse our plugin catalog to view available plugins.
  • '; + $('#ulInstalledPlugins', page).html(html); + }else { + $('#ulInstalledPlugins', page).html(html).listview('refresh'); + } + Dashboard.hideLoadingMsg(); },