Return null instead of N/A on statistics

This commit is contained in:
Panagiotis Kanakakis 2019-02-12 11:41:35 +00:00
parent 0483f7ddb0
commit 76cd57d035
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ public class StatsServiceImpl implements StatsService {
stats.put("lastYearUsagestats", lastYearUsagestats);
// Integer usagestats = getUsageStatsTotal();
stats.put("usagestats","N/A");
stats.put("usagestats",null);
return stats;
}