diff options
| author | gitlabhq <m@gitlabhq.com> | 2011-10-27 17:08:40 +0300 |
|---|---|---|
| committer | gitlabhq <m@gitlabhq.com> | 2011-10-27 17:08:40 +0300 |
| commit | 5fe736ab2847a5fd7f85363197e3ae0cbfd959e1 (patch) | |
| tree | 0f446e5aa5c79efce2cec59eabb5edfd8e87990d /app | |
| parent | e41bc4dd508666fd8e019a4dc12825e23128a00b (diff) | |
| download | gitlab-ce-5fe736ab2847a5fd7f85363197e3ae0cbfd959e1.tar.gz | |
little fix
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/issues/_show.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_show.html.haml b/app/views/issues/_show.html.haml index afcd2b6e7c5..ebcaae29ef5 100644 --- a/app/views/issues/_show.html.haml +++ b/app/views/issues/_show.html.haml @@ -1,5 +1,5 @@ %tr{ :id => dom_id(issue), :class => "issue #{issue.critical ? "critical" : ""}", :url => project_issue_path(@project, issue) } - - if can?(current_user, :admin_issue, @project) && !params[:f] || params[:f] == "0" + - if can?(current_user, :admin_issue, @project) && (!params[:f] || params[:f] == "0") %td = image_tag "move.png" , :class => [:handle, :left] %td |
