Auto-expand running actions step

This commit is contained in:
bytedream 2024-03-25 02:41:39 +01:00
parent 3f26fe2fa2
commit e5ea1e8ae3
1 changed files with 6 additions and 0 deletions

View File

@ -247,6 +247,12 @@ const sfc = {
// initial states for job steps
this.currentJobStepsStates[i] = {cursor: null, expanded: false};
}
// expands the currently running job step if its state wasn't 'running' before
if (this.currentJob.steps[i].status === 'running' && this.currentJobStepsStates[i].cursor === null) {
this.currentJobStepsStates[i].cursor = 0;
this.currentJobStepsStates[i].expanded = true;
}
}
// append logs to the UI
for (const logs of job.logs.stepsLog) {