Sfoglia il codice sorgente

Auto-expand running actions step

pull/30058/head
bytedream 3 mesi fa
parent
commit
e5ea1e8ae3
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. 6
    0
      web_src/js/components/RepoActionView.vue

+ 6
- 0
web_src/js/components/RepoActionView.vue Vedi 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) {

Loading…
Annulla
Salva