diff options
author | Stan Hu <stanhu@gmail.com> | 2018-07-05 14:09:01 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2018-07-05 14:09:01 -0700 |
commit | a78e36abab6d30d2fc7571ab095a2c08bd52dd24 (patch) | |
tree | a38419b13447d2d5af0eef27350bdfd4745ba46d /app/views | |
parent | c7198166e8790a1335de0a08bd38080873806710 (diff) | |
download | gitlab-ce-a78e36abab6d30d2fc7571ab095a2c08bd52dd24.tar.gz |
Improve error handling of Bitbucket login errors
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/import/bitbucket_server/status.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/import/bitbucket_server/status.html.haml b/app/views/import/bitbucket_server/status.html.haml index eca208bad91..81eac62c1ef 100644 --- a/app/views/import/bitbucket_server/status.html.haml +++ b/app/views/import/bitbucket_server/status.html.haml @@ -50,7 +50,7 @@ = project.human_import_status_name - @repos.each do |repo| - %tr{ id: "repo_#{repo.owner}___#{repo.slug}" } + %tr{ id: "repo_#{repo.owner}___#{repo.slug}", data: { project: repo.project_name, repository: repo.slug } } %td = link_to repo.full_name, repo.browse_url, target: '_blank', rel: 'noopener noreferrer' %td.import-target |