Days interval in 'Task Completation Lead/Lag' should be Integer
FEA: ItEr76S15OrganizingPerProjectDashboard
This commit is contained in:
parent
a6a1173203
commit
7b37e40d32
1 changed files with 2 additions and 1 deletions
|
|
@ -418,7 +418,8 @@ public class DashboardModel implements IDashboardModel {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("[%.2f, %.2f]", min, max);
|
||||
return String.format("[%d, %d]", (int) Math.ceil(min),
|
||||
(int) Math.ceil(max));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue