Skip to content

Commit

Permalink
remove lt boundary
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaskikutis committed Aug 6, 2024
1 parent cecb42e commit d57ef18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,25 +305,25 @@
"name": lazy_gettext("Last 24 hours"),
"filter": "last_24_hours",
"default": False,
"query": {"gte": "now-24h/m", "lt": "now/m"},
"query": {"gte": "now-24h/m"},
},
{
"name": lazy_gettext("Last Week"),
"filter": "last_week",
"default": False,
"query": {"gte": "now-1w/h", "lt": "now/h"},
"query": {"gte": "now-1w/h"},
},
{
"name": lazy_gettext("Last 30 days"),
"filter": "last_30_days",
"default": True,
"query": {"gte": "now-30d/h", "lt": "now/h"},
"query": {"gte": "now-30d/h"},
},
{
"name": lazy_gettext("Last 2 years"),
"filter": "last_2_years",
"default": False,
"query": {"gte": "now-2y/d", "lt": "now/d"},
"query": {"gte": "now-2y/d"},
},
]

Expand Down

0 comments on commit d57ef18

Please sign in to comment.