From 85af15b7c3ba1f024af7b10c2396f4675cd4a878 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Wed, 22 Apr 2009 10:21:42 -0700 Subject: [PATCH] [#2280] Center the billable column --- lib/overhead_timesheet_hook.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/overhead_timesheet_hook.rb b/lib/overhead_timesheet_hook.rb index 957451c..22bd23e 100644 --- a/lib/overhead_timesheet_hook.rb +++ b/lib/overhead_timesheet_hook.rb @@ -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