diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js index e913c370b5..f3186b5f3a 100644 --- a/dashboard-ui/scripts/Itemdetailpage.js +++ b/dashboard-ui/scripts/Itemdetailpage.js @@ -505,13 +505,20 @@ if (stream.Channels) { html += '
  • Channels ' + stream.Channels + '
  • '; } - + if (stream.SampleRate) { + html += '
  • Sample Rate ' + stream.SampleRate + '
  • '; + } + var framerate = stream.AverageFrameRate || stream.RealFrameRate; if (framerate) { html += '
  • Framerate ' + framerate + '
  • '; } + if (stream.PixelFormat) { + html += '
  • Pixel Format ' + stream.PixelFormat + '
  • '; + } + if (stream.IsDefault) { html += '
  • Default
  • '; }