Skip to content

Commit

Permalink
Modifica filtro de dias para el panel (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcardozo authored Feb 22, 2024
1 parent ce2dddf commit fb789df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sistemita/core/views/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def render_to_response(self, context, **response_kwargs):

filter_days = None
if not self.request.GET.get('hasta'):
filter_days = date.today() - timedelta(days=90)
filter_days = date.today() - timedelta(days=30)
else:

try:
Expand Down

0 comments on commit fb789df

Please sign in to comment.