mirror of https://github.com/go-gitea/gitea.git
Backport #35654 by wxiaoguang Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>pull/35667/head^2
parent
602af1499e
commit
ae2e8c1f00
|
|
@ -601,7 +601,8 @@ export default defineComponent({
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="job-step-container" ref="stepsContainer" v-if="currentJob.steps.length">
|
<!-- always create the node because we have our own event listeners on it, don't use "v-if" -->
|
||||||
|
<div class="job-step-container" ref="stepsContainer" v-show="currentJob.steps.length">
|
||||||
<div class="job-step-section" v-for="(jobStep, i) in currentJob.steps" :key="i">
|
<div class="job-step-section" v-for="(jobStep, i) in currentJob.steps" :key="i">
|
||||||
<div class="job-step-summary" @click.stop="isExpandable(jobStep.status) && toggleStepLogs(i)" :class="[currentJobStepsStates[i].expanded ? 'selected' : '', isExpandable(jobStep.status) && 'step-expandable']">
|
<div class="job-step-summary" @click.stop="isExpandable(jobStep.status) && toggleStepLogs(i)" :class="[currentJobStepsStates[i].expanded ? 'selected' : '', isExpandable(jobStep.status) && 'step-expandable']">
|
||||||
<!-- If the job is done and the job step log is loaded for the first time, show the loading icon
|
<!-- If the job is done and the job step log is loaded for the first time, show the loading icon
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue