Skip to content

Commit

Permalink
Fix value
Browse files Browse the repository at this point in the history
  • Loading branch information
webjunkie committed Mar 21, 2024
1 parent d519339 commit 13ab9a3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion posthog/hogql_queries/insights/lifecycle_query_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ def to_actors_query(

def to_actors_query_options(self) -> InsightActorsQueryOptionsResponse:
return InsightActorsQueryOptionsResponse(
day=[{"label": format_label_date(value), "value": value} for value in self.query_date_range.all_values()],
day=[
{"label": format_label_date(value), "value": value.isoformat().replace("+00:00", "Z")}
for value in self.query_date_range.all_values()
],
status=[
{
"label": "Dormant",
Expand Down

0 comments on commit 13ab9a3

Please sign in to comment.