summaryrefslogtreecommitdiffstats
path: root/app/views/enumerations
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2009-10-21 22:35:03 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2009-10-21 22:35:03 +0000
commitff3d0fe4db014885de3497931b4b98fad0cafac1 (patch)
treef20ded2d238b57e71ed59407aec49b645f6fd5e9 /app/views/enumerations
parent2e0cbd2840ffb9fdb355ed0afd6b8684f2549bc7 (diff)
downloadredmine-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.rhtml4
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 },