Actions
Feature #24015
closedDo not hide estimated_hours label when value is nil
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
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?
Updated by Jean-Philippe Lang about 8 years ago
- Assignee set to Jean-Philippe Lang
- Target version set to 3.4.0
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.
Updated by Jean-Philippe Lang about 8 years ago
- Status changed from New to Closed
- Resolution set to Fixed
Fixed in r15906.
Actions