Vote #77879
完了Do not hide estimated_hours label when value is nil
0%
説明
Currently the estimated_hours is completely hidden from Issue Show view when the value is nil or 0.
That is undesirable. The fact that there has not been a value set is valuable information and should be shown more explicit.
My proposed change is the following code in the issues/show.html.erb Template:
# override Redmine behaviour and always show the estimated hours but with empty value
rows.right l(:field_estimated_hours), (@issue.estimated_hours.present? || @issue.total_estimated_hours.to_f > 0) ? issue_estimated_hours_details(@issue) : '',
:class => 'estimated-hours'
What do you think of it?
journals
I agree, it used to be hidden if empty for people who do not want to use it. But now that we can enable/disable standard fields on each tracker, we should not hide it when it's enabled.
--------------------------------------------------------------------------------
Fixed in r15906.
--------------------------------------------------------------------------------