Skip to content

Commit

Permalink
INTGW-598: Application/ Subscription Creation Graph is not visualized…
Browse files Browse the repository at this point in the history
… properly
  • Loading branch information
hamlakshan authored and jaadds committed Jun 20, 2019
1 parent d787fdd commit b472e91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ protected Callback getHistoricalGraphData(String user, List<Range> months, List<
Callback returnCall;

for (Range month : months) {
taskList = activityClient.getHistoricTasks(month.getStart(), month.getEnd(), getProcessDefinitionKey(), user);
taskList = activityClient.getHistoricTasks(month.getStart(), month.getEnd(), getProcessDefinitionKey(), user.toLowerCase());
data.add(taskList.getTotal());

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ protected Callback getHistoricalGraphData(String user, List<Range> months, List<
Callback returnCall;

for (Range month : months) {
taskList = activityClient.getHistoricTasks(month.getStart(), month.getEnd(), getProcessDefinitionKey(), user);
taskList = activityClient.getHistoricTasks(month.getStart(), month.getEnd(), getProcessDefinitionKey(), user.toLowerCase());
data.add(taskList.getTotal());
}

Expand Down

0 comments on commit b472e91

Please sign in to comment.