diff --git a/app/views/moderation/budgets/investments/index.html.erb b/app/views/moderation/budgets/investments/index.html.erb index a587c4e52..1caf64927 100644 --- a/app/views/moderation/budgets/investments/index.html.erb +++ b/app/views/moderation/budgets/investments/index.html.erb @@ -14,7 +14,7 @@ <%= link_to investment.title, admin_budget_budget_investment_path( budget_id: investment.budget_id, id: investment.id - ), target: "_blank" %> + ) %>
<%= l investment.updated_at.to_date %>  •  diff --git a/app/views/moderation/comments/index.html.erb b/app/views/moderation/comments/index.html.erb index 03cd66679..3e393ccdc 100644 --- a/app/views/moderation/comments/index.html.erb +++ b/app/views/moderation/comments/index.html.erb @@ -12,7 +12,7 @@ <%= comment.commentable_type.constantize.model_name.human %> - - <%= link_to comment.commentable.title, commentable_path(comment), target: "_blank" %> + <%= link_to comment.commentable.title, commentable_path(comment) %>
<%= l comment.updated_at.to_date %>  •  diff --git a/app/views/moderation/debates/index.html.erb b/app/views/moderation/debates/index.html.erb index fef01f71a..ec8639581 100644 --- a/app/views/moderation/debates/index.html.erb +++ b/app/views/moderation/debates/index.html.erb @@ -11,7 +11,7 @@ <% @debates.each do |debate| %> - <%= link_to debate.title, debate, target: "_blank" %> + <%= link_to debate.title, debate %>
<%= l debate.updated_at.to_date %>  •  diff --git a/app/views/moderation/proposal_notifications/index.html.erb b/app/views/moderation/proposal_notifications/index.html.erb index 5cd563776..fd7821a42 100644 --- a/app/views/moderation/proposal_notifications/index.html.erb +++ b/app/views/moderation/proposal_notifications/index.html.erb @@ -11,7 +11,7 @@ <% @proposal_notifications.each do |proposal_notification| %> - <%= link_to proposal_notification.title, proposal_notification, target: "_blank" %> + <%= link_to proposal_notification.title, proposal_notification %>
<%= l proposal_notification.updated_at.to_date %>
diff --git a/app/views/moderation/proposals/index.html.erb b/app/views/moderation/proposals/index.html.erb index e715a0b91..766d590a3 100644 --- a/app/views/moderation/proposals/index.html.erb +++ b/app/views/moderation/proposals/index.html.erb @@ -11,7 +11,7 @@ <% @proposals.each do |proposal| %> - <%= link_to proposal.title, proposal, target: "_blank" %> + <%= link_to proposal.title, proposal %>
<%= l proposal.updated_at.to_date %>  •