[#2280] Center the billable column

This commit is contained in:
Eric Davis
2009-04-22 10:21:42 -07:00
parent c62722041d
commit 85af15b7c3

View File

@@ -12,7 +12,7 @@ class OverheadTimesheetHook < Redmine::Hook::ViewListener
def plugin_timesheet_views_timesheet_time_entry(context={})
time_entry = context[:time_entry]
if time_entry && time_entry.billable?
content_tag(:td, image_tag('true.png'))
content_tag(:td, image_tag('true.png'), :style => "text-align:center;")
else
content_tag(:td,'')
end