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
When listing failing jobs, the upper end of the job range shown in the header is one higher than it should be, due to the header referencing the following:
def failure_end_at
if failure_start_at + failure_per_page > failure_size
failure_size
else
failure_start_at + failure_per_page
end
end
Both the pagination and non-pagination cases appear wrong.
Note: This all assumes that the convention of addressing jobs starting with zero is intentional.
The text was updated successfully, but these errors were encountered:
When listing failing jobs, the upper end of the job range shown in the header is one higher than it should be, due to the header referencing the following:
Both the pagination and non-pagination cases appear wrong.
Note: This all assumes that the convention of addressing jobs starting with zero is intentional.
The text was updated successfully, but these errors were encountered: