diff --git a/dashboard-ui/css/metadataeditor.css b/dashboard-ui/css/metadataeditor.css index fb6120a3cf..38165d6cdf 100644 --- a/dashboard-ui/css/metadataeditor.css +++ b/dashboard-ui/css/metadataeditor.css @@ -129,7 +129,7 @@ } .imageEditorTile { - width: 200px; + width: 192px; padding-bottom: 0; } diff --git a/dashboard-ui/scripts/edititemimages.js b/dashboard-ui/scripts/edititemimages.js index 74e1f69ccc..d4429823d7 100644 --- a/dashboard-ui/scripts/edititemimages.js +++ b/dashboard-ui/scripts/edititemimages.js @@ -318,11 +318,13 @@ html += '
'; - html += '
'; + html += '
'; html += '
'; - html += '

' + image.ImageType + '

'; + if (image.ImageType !== "Backdrop" && image.ImageType !== "Screenshot") { + html += '

' + image.ImageType + '

'; + } html += '

' + image.Width + ' X ' + image.Height + '

';