From 4b722b3282ec815349d24814181b7f8dc316fbb5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 13 May 2013 11:07:24 -0400 Subject: [PATCH] fixes #271 - No message when plugin is not configurable --- dashboard-ui/scripts/pluginspage.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index fe531b8c58..8856afd368 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -41,9 +41,11 @@ html += "
  • "; - var href = configPage ? Dashboard.getConfigurationPageUrl(configPage.Name) : "#"; - - html += ""; + if (configPage) { + html += ""; + } else { + html += ""; + } html += "

    " + plugin.Name + "

    ";