diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-10-21 22:35:03 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-10-21 22:35:03 +0000 |
commit | ff3d0fe4db014885de3497931b4b98fad0cafac1 (patch) | |
tree | f20ded2d238b57e71ed59407aec49b645f6fd5e9 /app/views/enumerations | |
parent | 2e0cbd2840ffb9fdb355ed0afd6b8684f2549bc7 (diff) | |
download | redmine-ff3d0fe4db014885de3497931b4b98fad0cafac1.tar.gz redmine-ff3d0fe4db014885de3497931b4b98fad0cafac1.zip |
Fixed some merge bugs. #4077
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2952 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/enumerations')
-rw-r--r-- | app/views/enumerations/list.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/enumerations/list.rhtml b/app/views/enumerations/list.rhtml index 817751ab2..13e1b6bb8 100644 --- a/app/views/enumerations/list.rhtml +++ b/app/views/enumerations/list.rhtml @@ -16,8 +16,8 @@ <% enumerations.each do |enumeration| %> <tr class="<%= cycle('odd', 'even') %>"> <td><%= link_to h(enumeration), :action => 'edit', :id => enumeration %></td> - <td style="width:15%;"><%= image_tag('true.png') if enumeration.is_default? %></td> - <td style="width:15%;"><%= image_tag('true.png') if enumeration.active? %></td> + <td class="center" style="width:15%;"><%= image_tag('true.png') if enumeration.is_default? %></td> + <td class="center" style="width:15%;"><%= image_tag('true.png') if enumeration.active? %></td> <td style="width:15%;"><%= reorder_links('enumeration', {:action => 'update', :id => enumeration}) %></td> <td class="buttons"> <%= link_to l(:button_delete), { :action => 'destroy', :id => enumeration }, |