From be47b3f4898c05ad20310bb4e0e2628844f31c9d Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Sat, 7 Aug 2021 13:26:11 +0200 Subject: [PATCH] fd --- files/routes/admin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files/routes/admin.py b/files/routes/admin.py index a10d61b51..68f9f829e 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -1107,15 +1107,15 @@ def multiple_plots(**kwargs): signup_chart.plot( kwargs['daily_times'][1:][::-1], - kwargs['sign_ups'], + kwargs['sign_ups'][1:], color='red') posts_chart.plot( kwargs['daily_times'][1:][::-1], - kwargs['posts'], + kwargs['posts'][1:], color='green') comments_chart.plot( kwargs['daily_times'][1:][::-1], - kwargs['comments'], + kwargs['comments'][1:], color='gold') signup_chart.set_ylabel("Signups")