mirror of https://github.com/zulip/zulip.git
stats: Remove hour from on-hover date for Number of users.
This commit is contained in:
parent
2b97a9488f
commit
d28a4d1f86
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue