diff --git a/app/views/organisations/duplicate_schemes.html.erb b/app/views/organisations/duplicate_schemes.html.erb
index 427cf427c..79f7d435f 100644
--- a/app/views/organisations/duplicate_schemes.html.erb
+++ b/app/views/organisations/duplicate_schemes.html.erb
@@ -56,6 +56,8 @@
<% end %>
+
The links below open in a new tab.
+
<%= govuk_table do |table| %>
<%= table.with_head do |head| %>
<% head.with_row do |row| %>
@@ -69,7 +71,7 @@
<% duplicate_set.each do |scheme| %>
-
- <%= govuk_link_to scheme.service_name, scheme %>
+ <%= govuk_link_to scheme.service_name, scheme, target: "#" %>
<% end %>
@@ -93,6 +95,8 @@
<% end %>
+ The links below open in a new tab.
+
<%= govuk_table do |table| %>
<%= table.with_head do |head| %>
<% head.with_row do |row| %>
@@ -107,13 +111,13 @@
<% duplicate_set[:locations].each do |location| %>
-
- <%= govuk_link_to location.name, scheme_location_path(location) %>
+ <%= govuk_link_to location.name, scheme_location_path(location), target: "#" %>
<% end %>
<% end %>
<% row.with_cell do %>
- <%= govuk_link_to duplicate_set[:scheme].service_name, duplicate_set[:scheme] %>
+ <%= govuk_link_to duplicate_set[:scheme].service_name, duplicate_set[:scheme], target: "#" %>
<% end %>
<% end %>
<% end %>