mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix date range shown in reverse in MDM Reports
(cherry picked from commit 5d23d1d6f6)
This commit is contained in:
parent
bb4780f58a
commit
2b4ba189c7
@ -315,7 +315,7 @@ public class ReportManagementServiceImpl implements ReportManagementService {
|
||||
}
|
||||
//Map date blocks and counts
|
||||
resultObject.addProperty(
|
||||
dateFormat.format(endDate) + " - " + dateFormat.format(previousDate), sum);
|
||||
dateFormat.format(previousDate) + " - " + dateFormat.format(endDate), sum);
|
||||
endDate = previousDate;
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user