summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci/runner/components/runner_list.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci/runner/components/runner_list.vue')
-rw-r--r--app/assets/javascripts/ci/runner/components/runner_list.vue13
1 files changed, 7 insertions, 6 deletions
diff --git a/app/assets/javascripts/ci/runner/components/runner_list.vue b/app/assets/javascripts/ci/runner/components/runner_list.vue
index b2aad0aac4f..ec04701db2c 100644
--- a/app/assets/javascripts/ci/runner/components/runner_list.vue
+++ b/app/assets/javascripts/ci/runner/components/runner_list.vue
@@ -150,16 +150,17 @@ export default {
</template>
<template #cell(status)="{ item }">
- <runner-status-cell :runner="item" />
+ <runner-status-cell :runner="item">
+ <template #runner-job-status-badge="{ runner }">
+ <slot name="runner-job-status-badge" :runner="runner"></slot>
+ </template>
+ </runner-status-cell>
</template>
- <template #cell(summary)="{ item, index }">
+ <template #cell(summary)="{ item }">
<runner-summary-cell :runner="item">
<template #runner-name="{ runner }">
- <slot name="runner-name" :runner="runner" :index="index"></slot>
- </template>
- <template #runner-job-status-badge="{ runner }">
- <slot name="runner-job-status-badge" :runner="runner" :index="index"></slot>
+ <slot name="runner-name" :runner="runner"></slot>
</template>
</runner-summary-cell>
</template>