From 632ac27e11f405f8bec2405f8a58376ff95cccc5 Mon Sep 17 00:00:00 2001 From: David Gageot Date: Tue, 5 Jun 2012 12:04:28 +0200 Subject: [PATCH] SONAR-2073 FIX Add a space before star (cherry picked from commit f69e3ec312326557527977391c42e633d84f4d86) --- .../WEB-INF/app/views/dashboard/_widget_properties.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_properties.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_properties.html.erb index 4dacfecb94d..79225aa2e72 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_properties.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget_properties.html.erb @@ -15,7 +15,7 @@ <% widget.java_definition.getWidgetProperties().sort { |w1, w2| natural_comparison(w1.key, w2.key) }.each do |property_def| %> - <%= property_def.key() -%><%= "*" unless property_def.optional() -%> + <%= property_def.key() -%><%= " *" unless property_def.optional() -%> <%= property_value_field(property_def, widget.property_text_value(property_def.key())) -%>
-- 2.39.5