From 0b1e36db27c8b1bdcd8ce075e513bf459dbac584 Mon Sep 17 00:00:00 2001 From: Vishnu Ks Date: Fri, 18 Jan 2019 18:24:04 +0530 Subject: [PATCH] stats: Make all time active users graph default. We now bill by total users, whereas we used to bill by 15 day actives. --- static/js/stats/stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/stats/stats.js b/static/js/stats/stats.js index abe9f7ab61..fdbbc37e4e 100644 --- a/static/js/stats/stats.js +++ b/static/js/stats/stats.js @@ -719,7 +719,7 @@ function populate_number_of_users(data) { // Initial drawing of plot draw_or_update_plot(_15day_trace, true); - $('#15day_actives_button').addClass("selected"); + $('#all_time_actives_button').addClass("selected"); }