diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js
index 742fd6df22..fe531b8c58 100644
--- a/dashboard-ui/scripts/pluginspage.js
+++ b/dashboard-ui/scripts/pluginspage.js
@@ -55,12 +55,14 @@
html += "";
}
-
- if (plugins.length == 0 || !plugins.length) {
- html += "
You have no plugins installed. Click on the Plugin Catalog to view available plugins.";
- }
- $('#ulInstalledPlugins', page).html(html).listview('refresh');
+ if (plugins.length == 0 || !plugins.length) {
+ html += 'You have no plugins installed. Browse our plugin catalog to view available plugins.';
+ $('#ulInstalledPlugins', page).html(html);
+ }else {
+ $('#ulInstalledPlugins', page).html(html).listview('refresh');
+ }
+
Dashboard.hideLoadingMsg();
},