diff --git a/dashboard-ui/css/notifications.css b/dashboard-ui/css/notifications.css
index 5adf86e9e7..44be7c0df6 100644
--- a/dashboard-ui/css/notifications.css
+++ b/dashboard-ui/css/notifications.css
@@ -66,6 +66,8 @@
.flyoutNotification p {
margin: .5em 0;
+ white-space: normal;
+ max-width: 95%;
}
.notificationName {
diff --git a/dashboard-ui/dashboard.html b/dashboard-ui/dashboard.html
index e98daf75a4..d46d273454 100644
--- a/dashboard-ui/dashboard.html
+++ b/dashboard-ui/dashboard.html
@@ -54,7 +54,7 @@
Manage Scheduled Tasks
-
+
Help improve Media Browser
diff --git a/dashboard-ui/scripts/dashboardpage.js b/dashboard-ui/scripts/dashboardpage.js
index e4732c684e..8a17becdec 100644
--- a/dashboard-ui/scripts/dashboardpage.js
+++ b/dashboard-ui/scripts/dashboardpage.js
@@ -9,6 +9,16 @@
DashboardPage.lastAppUpdateCheck = null;
DashboardPage.lastPluginUpdateCheck = null;
+
+ Dashboard.getPluginSecurityInfo().done(function (pluginSecurityInfo) {
+
+ if (pluginSecurityInfo.IsMBSupporter) {
+ $('#contribute').hide();
+ } else {
+ $('#contribute').show();
+ }
+
+ });
},
onPageHide: function () {