From da10b8a6c8f326b2f57dd7e02d21ce17dc34f9a7 Mon Sep 17 00:00:00 2001 From: David Gageot Date: Tue, 15 May 2012 15:04:28 +0200 Subject: [PATCH] SONAR-2073 Fix the url given when a widget is not configured. When a Filter widget has not yet been configured, the following message is displayed "Please configure the widget Filter." but link is incorrect as for instance this link is "http://localhost:9000/dashboard/configure/8?did=8" instead of "http://localhost:9000/dashboard/configure?did=8" --- .../main/webapp/WEB-INF/app/views/dashboard/_widget.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget.html.erb index 6795e8673bd..ac6d02b7811 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/_widget.html.erb @@ -27,7 +27,7 @@ <% else %>

- <%= message('dashboard.please_configure_the_widget_x', :params => widget.java_definition.getTitle()) -%> + <%= message('dashboard.please_configure_the_widget_x', :params => widget.java_definition.getTitle()) -%>

<% end %> -- 2.39.5