loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix click handler in job-step-summary (#30122)

Fix mistake from https://github.com/go-gitea/gitea/pull/29977 where the
click handler wasn't updated for the change with the `isExpandable`
function.

(cherry picked from commit 57539bcdc024110c890320e3e785bf3d6ad6df55)

authored by

silverwind and committed by
Earl Warren
43db1e81 544e66ec

+1 -1
+1 -1
web_src/js/components/RepoActionView.vue
··· 472 472 </div> 473 473 <div class="job-step-container" ref="steps" v-if="currentJob.steps.length"> 474 474 <div class="job-step-section" v-for="(jobStep, i) in currentJob.steps" :key="i"> 475 - <div class="job-step-summary" @click.stop="jobStep.status !== 'skipped' && toggleStepLogs(i)" :class="[currentJobStepsStates[i].expanded ? 'selected' : '', isExpandable(jobStep.status) && 'step-expandable']"> 475 + <div class="job-step-summary" @click.stop="isExpandable(jobStep.status) && toggleStepLogs(i)" :class="[currentJobStepsStates[i].expanded ? 'selected' : '', isExpandable(jobStep.status) && 'step-expandable']"> 476 476 <!-- If the job is done and the job step log is loaded for the first time, show the loading icon 477 477 currentJobStepsStates[i].cursor === null means the log is loaded for the first time 478 478 -->