You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The graph of daily active users on the "Deployment" page always shows a date one day earlier than the current day for the latest data point (which appears to reflect the number for the current day). I don't think this is a time zone issue, since displaying the date in an inaccurate timezone would lead to an error in the opposite direction, but it might be something internal where the system attempts to compensate for timezones and overcorrects.
Which returns a Date and strips the timezone information (eg '2001-09-28'). We unmarshal that into a time.Time, which defaults to UTC.
I think the proper fix is to remove time information from the api. Return 2024-01-31 instead of '2024-01-31T00:00:00Z'. Then the javascript works as intended. I will fix this
The graph of daily active users on the "Deployment" page always shows a date one day earlier than the current day for the latest data point (which appears to reflect the number for the current day). I don't think this is a time zone issue, since displaying the date in an inaccurate timezone would lead to an error in the opposite direction, but it might be something internal where the system attempts to compensate for timezones and overcorrects.
Possibly related: #7275
The text was updated successfully, but these errors were encountered: