Skip to content

Commit

Permalink
FIX step size in active plot
Browse files Browse the repository at this point in the history
  • Loading branch information
wabscale committed Feb 8, 2022
1 parent 08f04e7 commit 24c6d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/anubis/views/public/visuals.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def public_visuals_usage(course_id: str):
def public_visuals_usage_active():
# Get the png blob of the usage graph.
# The get_usage_plot is itself a cached function.
blob = get_usage_plot_active(days=14, step=7)
blob = get_usage_plot_active(days=14, step=1)

return make_png_response(blob)

Expand Down

0 comments on commit 24c6d13

Please sign in to comment.