mirror of
https://github.com/redmine/redmine.git
synced 2026-06-18 03:31:35 +02:00
Adds units in history for estimated time (#12456).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@15143 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -382,8 +382,8 @@ module IssuesHelper
|
||||
old_value = find_name_by_reflection(field, detail.old_value)
|
||||
|
||||
when 'estimated_hours'
|
||||
value = "%0.02f" % detail.value.to_f unless detail.value.blank?
|
||||
old_value = "%0.02f" % detail.old_value.to_f unless detail.old_value.blank?
|
||||
value = l_hours_short(detail.value.to_f) unless detail.value.blank?
|
||||
old_value = l_hours_short(detail.old_value.to_f) unless detail.old_value.blank?
|
||||
|
||||
when 'parent_id'
|
||||
label = l(:field_parent_issue)
|
||||
|
||||
Reference in New Issue
Block a user