Skip to content

Commit

Permalink
fix(ui): missing task run value on log list
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Jul 7, 2023
1 parent 35f70cc commit 25763db
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ui/src/components/logs/LogList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@
<strong>{{ $t("duration") }}:</strong>
{{ $filters.humanizeDuration(attempt.state.duration) }}
</template>
<code>{{ currentTaskRun.taskId }}</code>
<small v-if="currentTaskRun.value">
{{ currentTaskRun.value }}
</small>
<span>
<code class="me-1">{{ currentTaskRun.taskId }}</code>
<small v-if="currentTaskRun.value">
{{ currentTaskRun.value }}
</small>
</span>
</el-tooltip>
</div>

Expand Down

0 comments on commit 25763db

Please sign in to comment.