stats: Remove hour from on-hover date for Number of users.

This commit is contained in:
Rishi Gupta 2018-05-26 11:04:25 -07:00 committed by Tim Abbott
parent 2b97a9488f
commit d28a4d1f86
1 changed files with 3 additions and 1 deletions

View File

@ -647,7 +647,9 @@ function populate_number_of_users(data) {
return new Date(timestamp*1000);
});
var text = end_dates.map(format_date);
var text = end_dates.map(function (date) {
return format_date(date, false);
});
function make_traces(values, type) {
return {