Show closed tasks on the Gantt chart and fix rounding for task progress
This commit is contained in:
@@ -195,6 +195,6 @@ class Task extends Base
|
||||
$position++;
|
||||
}
|
||||
|
||||
return (int) ($position * 100) / count($columns);
|
||||
return round(($position * 100) / count($columns), 1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user