Skip to content
Snippets Groups Projects
Commit 53279d93 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets Committed by Wes Gurney
Browse files

Fix 500 error on admin->project page

parent db265778
No related branches found
No related tags found
1 merge request!4954Add support to configure webhook_timeout in gitlab.yaml
Loading
Loading
@@ -66,7 +66,7 @@
}
 
.project-row, .group-row {
padding: 12px 15px !important;
padding: 10px 15px !important;
 
.namespace-name {
color: #666;
Loading
Loading
@@ -77,7 +77,6 @@
font-size: 16px;
}
 
.arrow {
float: right;
padding: 10px 5px;
Loading
Loading
Loading
Loading
@@ -99,7 +99,7 @@
%ul.well-list.team_members
- @project.users_projects.each do |users_project|
- user = users_project.user
%li
%li.users_project
%strong
= link_to user.name, admin_user_path(user)
.pull-right
Loading
Loading
@@ -107,5 +107,5 @@
%span.light Owner
- else
%span.light= users_project.human_access
= link_to admin_project_member_path(@project, user), confirm: remove_from_project_team_message(@project, user), method: :delete, class: "btn btn-small btn-remove" do
= link_to project_team_member_path(@project, user), confirm: remove_from_project_team_message(@project, user), method: :delete, remote: true, class: "btn btn-small btn-remove" do
%i.icon-remove
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment