From 65d7cb543b2954f5075bc37d437b10b0119159c7 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 27 Mar 2013 10:12:05 -0400 Subject: [PATCH] tweaked detail text --- dashboard-ui/scripts/Itemdetailpage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js index 8bf2844beb..8c54ac4fac 100644 --- a/dashboard-ui/scripts/Itemdetailpage.js +++ b/dashboard-ui/scripts/Itemdetailpage.js @@ -480,13 +480,13 @@ else html += ''; if (stream.Type == "Video") { - html += ''+ stream.Width +' '+ stream.Height +' ('+ stream.AspectRatio +')'; + html += ''+ stream.Width +'/'+ stream.Height +' ('+ stream.AspectRatio +')'; }else { html += ''; } if (stream.Channels) { - html += ''+ stream.Channels +'ch '+ stream.SampleRate +''; + html += ''+ stream.Channels +'ch '+ stream.SampleRate +' khz'; }else { html += ''; }