diff --git a/src/scripts/pluginspage.js b/src/scripts/pluginspage.js index 6fd82f4a2d..6264f012e0 100644 --- a/src/scripts/pluginspage.js +++ b/src/scripts/pluginspage.js @@ -41,7 +41,12 @@ define(["loading", "libraryMenu", "dom", "globalize", "cardStyle", "emby-linkbut html += '
'; html += '
'; html += configPageUrl ? '' : '
'; - plugin.ImageUrl ? (html += '
", html += "
") : html += ''; + if (plugin.ImageUrl) { + html += '
"; + html += "
"; + } else { + html += ''; + } html += configPageUrl ? "
" : "
"; html += "
"; html += '
'; @@ -137,4 +142,4 @@ define(["loading", "libraryMenu", "dom", "globalize", "cardStyle", "emby-linkbut }), window.PluginsPage = { renderPlugins: renderPlugins } -}); \ No newline at end of file +});