diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js
index f726fcc5f6..e0120e20ec 100644
--- a/dashboard-ui/scripts/Itemdetailpage.js
+++ b/dashboard-ui/scripts/Itemdetailpage.js
@@ -424,13 +424,13 @@
html += '
Aspect Ratio ' + stream.AspectRatio + '';
}
if (stream.BitRate) {
- html += 'Bitrate ' + stream.BitRate + '';
+ html += 'Bitrate ' + stream.BitRate + '';
}
if (stream.Channels) {
html += 'Channels ' + stream.Channels + '';
}
if (stream.SampleRate) {
- html += 'Sample Rate ' + stream.SampleRate + '';
+ html += 'Sample Rate ' + stream.SampleRate + '';
}
var framerate = stream.AverageFrameRate || stream.RealFrameRate;
diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js
index 854dce76b4..a4e63ea8e0 100644
--- a/dashboard-ui/scripts/librarybrowser.js
+++ b/dashboard-ui/scripts/librarybrowser.js
@@ -1329,7 +1329,7 @@
renderBudget: function (elem, item) {
if (item.Budget) {
- elem.show().html('Budget: $' + item.Budget + '');
+ elem.show().html('Budget: $' + item.Budget + '');
} else {
elem.hide();
}
@@ -1337,7 +1337,7 @@
renderRevenue: function (elem, item) {
if (item.Revenue) {
- elem.show().html('Revenue: $' + item.Revenue + '');
+ elem.show().html('Revenue: $' + item.Revenue + '');
} else {
elem.hide();
}
@@ -1519,4 +1519,4 @@
};
-})(window, document, jQuery);
\ No newline at end of file
+})(window, document, jQuery);