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.
1 parent 3f26fe2 commit e5ea1e8Copy full SHA for e5ea1e8
web_src/js/components/RepoActionView.vue
@@ -247,6 +247,12 @@ const sfc = {
247
// initial states for job steps
248
this.currentJobStepsStates[i] = {cursor: null, expanded: false};
249
}
250
+
251
+ // expands the currently running job step if its state wasn't 'running' before
252
+ if (this.currentJob.steps[i].status === 'running' && this.currentJobStepsStates[i].cursor === null) {
253
+ this.currentJobStepsStates[i].cursor = 0;
254
+ this.currentJobStepsStates[i].expanded = true;
255
+ }
256
257
// append logs to the UI
258
for (const logs of job.logs.stepsLog) {
0 commit comments