diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index 0dfc1524fa..1eb4c9a210 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1149,19 +1149,15 @@ attributes.push(createAttribute("External", (stream.IsExternal ? 'Yes' : 'No'))); } + if (stream.Type == "Video" && version.Timestamp) { + attributes.push(createAttribute("Timestamp", version.Timestamp)); + } + html += attributes.join('
'); html += ''; } - if (version.Container) { - html += '
Container' + version.Container + '
'; - } - - if (version.Formats && version.Formats.length) { - html += '
Format' + version.Formats.join(',') + '
'; - } - if (version.Size) { var size = (version.Size / (1024 * 1024)).toFixed(0); @@ -1173,6 +1169,14 @@ html += '
Path' + version.Path + '
'; } + if (version.Container) { + //html += '
Container' + version.Container + '
'; + } + + if (version.Formats && version.Formats.length) { + //html += '
Format' + version.Formats.join(',') + '
'; + } + return html; }