We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e982ff3 + 1954544 commit 8b21652Copy full SHA for 8b21652
site/frontend/src/pages/status/page.vue
@@ -181,10 +181,12 @@ const timeline: Ref<TimelineEntry[]> = computed(() => {
181
.filter(([_, reason]) => !reason.hasOwnProperty("InProgress"))
182
.reverse();
183
let queued_before = queued.length - 1;
184
+ const currentRunEnd =
185
+ current?.expected_end ?? addSeconds(new Date(), currentTimeLeft);
186
for (const [commit, reason] of queued) {
187
const expected_end = addSeconds(
- current?.expected_end ?? new Date(),
- currentTimeLeft + queued_before * expectedRunDuration
188
+ currentRunEnd,
189
+ queued_before * expectedRunDuration + expectedRunDuration
190
);
191
192
let kind = commit.type;
0 commit comments