Bug #1343: Only closed projects in company view perspective are displayed in grey
The tasks inside closed projects are now being shown as usual, and not marked as closed projects in the company view. FEA: ItEr76S04BugFixing
This commit is contained in:
parent
9b43190d0b
commit
aeffc18fe6
1 changed files with 1 additions and 1 deletions
|
|
@ -220,7 +220,7 @@ public class TaskComponent extends Div implements AfterCompose {
|
|||
cssClass += task.isLimitingAndHasDayAssignments() ? " limiting-assigned "
|
||||
: " limiting-unassigned ";
|
||||
}
|
||||
if (task.belongsClosedProject()) {
|
||||
if (task.isRoot() && task.belongsClosedProject()) {
|
||||
cssClass += " project-closed ";
|
||||
}
|
||||
return cssClass;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue