File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -601,7 +601,8 @@ export default defineComponent({
601601 </div >
602602 </div >
603603 </div >
604- <div class =" job-step-container" ref =" stepsContainer" v-if =" currentJob.steps.length" >
604+ <!-- always create the node because we have our own event listeners on it, don't use "v-if" -->
605+ <div class =" job-step-container" ref =" stepsContainer" v-show =" currentJob.steps.length" >
605606 <div class =" job-step-section" v-for =" (jobStep, i) in currentJob.steps" :key =" i" >
606607 <div class =" job-step-summary" @click.stop =" isExpandable(jobStep.status) && toggleStepLogs(i)" :class =" [currentJobStepsStates[i].expanded ? 'selected' : '', isExpandable(jobStep.status) && 'step-expandable']" >
607608 <!-- If the job is done and the job step log is loaded for the first time, show the loading icon
You can’t perform that action at this time.
0 commit comments