diff --git a/app/views/dashboard/_proposed_action.html.erb b/app/views/dashboard/_proposed_action.html.erb index a19a047e1..082ddf0ed 100644 --- a/app/views/dashboard/_proposed_action.html.erb +++ b/app/views/dashboard/_proposed_action.html.erb @@ -46,7 +46,7 @@ <% end %> <% proposed_action.links.each do |link| %> -

<%= link_to link.label, link.url, target: "_blank" %>

+

<%= link_to link.label, link.url %>

<% end %> <% proposed_action.documents.each do |document| %> diff --git a/app/views/dashboard/actions/new_request.html.erb b/app/views/dashboard/actions/new_request.html.erb index 93549ec36..907d1b090 100644 --- a/app/views/dashboard/actions/new_request.html.erb +++ b/app/views/dashboard/actions/new_request.html.erb @@ -13,7 +13,7 @@

<%= t("dashboard.new_request.links") %>

<% dashboard_action.links.each do |link| %> -

<%= link_to link.label, link.url, target: "_blank" %>

+

<%= link_to link.label, link.url %>

<% end %>
<% end %> diff --git a/app/views/dashboard/polls/index.html.erb b/app/views/dashboard/polls/index.html.erb index 24c9fd82d..fb7eebae8 100644 --- a/app/views/dashboard/polls/index.html.erb +++ b/app/views/dashboard/polls/index.html.erb @@ -14,7 +14,7 @@ <% if Setting["proposals.poll_link"].present? %>

<%= t("dashboard.polls.index.links") %>

<%= link_to t("dashboard.polls.index.additiontal_information"), - Setting["proposals.poll_link"], target: "_blank" %> + Setting["proposals.poll_link"] %> <% end %>

<%= t("dashboard.polls.index.count", count: @polls.count) %>