Default system dashboard respect stop timestamp when using a custom timerange #21238
Labels
kind/bug
severity/sev-4
team/dumplings
team/ui
v2-prod-bug
Trying to track all issues in V2 Prod to check code quality
Steps to reproduce:
List the minimal actions needed to reproduce the behavior.
Expected behavior:
The graph should stop at the stop time rather than the present time
Actual behavior:
The graph always stops at the current time
Fix
Swapping line 2 in each of the cells from
|> range(start: v.timeRangeStart)
to
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
fixes this, I'd like to have opened a PR as this is a small change but I'm struggling to find where the default dashboards are imported from.
The text was updated successfully, but these errors were encountered: