diff --git a/dashboard-ui/scripts/itemdetailpage.js b/dashboard-ui/scripts/itemdetailpage.js index ec41940069..0dfc1524fa 100644 --- a/dashboard-ui/scripts/itemdetailpage.js +++ b/dashboard-ui/scripts/itemdetailpage.js @@ -1133,6 +1133,10 @@ attributes.push(createAttribute("Sample Rate", stream.SampleRate + ' khz')); } + if (stream.BitDepth) { + attributes.push(createAttribute("Bit Depth", stream.BitDepth + ' bit')); + } + if (stream.PixelFormat) { attributes.push(createAttribute("Pixel Format", stream.PixelFormat)); } diff --git a/dashboard-ui/scripts/itemlistpage.js b/dashboard-ui/scripts/itemlistpage.js index 1d0194d4ef..0f34f49244 100644 --- a/dashboard-ui/scripts/itemlistpage.js +++ b/dashboard-ui/scripts/itemlistpage.js @@ -7,7 +7,7 @@ SortBy: "SortName", SortOrder: "Ascending", - Fields: "DateCreated", + Fields: "DateCreated,PrimaryImageAspectRatio", StartIndex: 0 };