Skip to content

Commit

Permalink
feat(UI): Added task id in metrics table
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed Mar 8, 2023
1 parent b6f6374 commit e7c30aa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ui/src/components/executions/ExecutionMetric.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
table-layout="auto"
fixed
>
<el-table-column prop="task" sortable :label="$t('task')">
<template #default="scope">
<p>{{ scope.row.taskId }}</p>
</template>
</el-table-column>
<el-table-column prop="name" sortable :label="$t('name')">
<template #default="scope">
<template v-if="scope.row.type === 'timer'">
Expand Down

0 comments on commit e7c30aa

Please sign in to comment.