From c5a9d73ad8a141166d871e551027208014a281c0 Mon Sep 17 00:00:00 2001 From: Jacob Schatz Date: Wed, 15 Mar 2017 21:21:48 +0000 Subject: Merge branch 'fix-links-target-blank' into 'security' Adds rel="noopener noreferrer" to all links with target="_blank" See merge request !2071 --- app/views/import/gitlab/status.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/import/gitlab') diff --git a/app/views/import/gitlab/status.html.haml b/app/views/import/gitlab/status.html.haml index d5b88709a34..7456799ca0e 100644 --- a/app/views/import/gitlab/status.html.haml +++ b/app/views/import/gitlab/status.html.haml @@ -43,7 +43,7 @@ - @repos.each do |repo| %tr{ id: "repo_#{repo["id"]}" } %td - = link_to repo["path_with_namespace"], "https://gitlab.com/#{repo["path_with_namespace"]}", target: "_blank" + = link_to repo["path_with_namespace"], "https://gitlab.com/#{repo["path_with_namespace"]}", target: "_blank", rel: 'noopener noreferrer' %td.import-target = import_project_target(repo['namespace']['path'], repo['name']) %td.import-actions.job-status -- cgit v1.2.3