Skip to content

Commit

Permalink
Improved: added the same class variable for pending jobs(hotwax#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Sourabh committed Nov 25, 2024
1 parent 0ebf7eb commit 1b25cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Pipeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</div>

<div v-else>
<ion-card v-for="job in pendingJobs" :key="job.jobId" @click="viewJobConfiguration(job)" :button="isDesktop" :class="{ 'job-card-elevated': elevatedJobCard === job.jobId }">
<ion-card v-for="job in pendingJobs" :key="job.jobId" @click="viewJobConfiguration(job)" :button="isDesktop" :class="{ 'job-card-elevated': elevateJobCard === job.jobId }">
<ion-card-header>
<ion-card-title>{{ job.enumName }}</ion-card-title>
<ion-badge v-if="job.runTime" color="dark">{{ timeFromNow(job.runTime)}}</ion-badge>
Expand Down

0 comments on commit 1b25cfe

Please sign in to comment.