Feature #24015
Do not hide estimated_hours label when value is nil
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Issues | |||
Target version: | 3.4.0 | |||
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?
Associated revisions
Do not hide estimated_hours when field is not disabled (#24015).
History
#1
Updated by Jean-Philippe Lang over 2 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.
#2
Updated by Jean-Philippe Lang over 2 years ago
- Status changed from New to Closed
- Resolution set to Fixed
Fixed in r15906.