From 150d9c9d3e19ebcf07e711f194e0e0c005046b04 Mon Sep 17 00:00:00 2001 From: Vishnu Ks Date: Fri, 1 Feb 2019 12:34:46 +0530 Subject: [PATCH] stats: Fix the bug in showing all time actives by default. Followup commit of 0b1e36db27c8b1bdcd8ce075e513bf459dbac584 --- 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 fdbbc37e4e..339d815a1e 100644 --- a/static/js/stats/stats.js +++ b/static/js/stats/stats.js @@ -718,7 +718,7 @@ function populate_number_of_users(data) { }); // Initial drawing of plot - draw_or_update_plot(_15day_trace, true); + draw_or_update_plot(all_time_trace, true); $('#all_time_actives_button').addClass("selected"); }