Skip to content

Commit feb0520

Browse files
committed
fix(ui): text
1 parent e4ab223 commit feb0520

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

web/src/components/TaskDetails.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template xmlns:v-slot="http://www.w3.org/1999/XSL/Transform">
22
<div>
33
4-
<h3 v-if="template">Template information</h3>
4+
<h2 v-if="template" class="pb-2">Template info</h2>
55
<div v-if="template" class="mb-5">
66
<div>App: <b>{{ getAppTitle(template.app) }}</b></div>
77
<div>
@@ -11,14 +11,14 @@
1111
</div>
1212
</div>
1313

14-
<h3 v-if="item.commit_hash">Commit info</h3>
14+
<h2 v-if="item.commit_hash" class="pb-2">Commit info</h2>
1515

1616
<div v-if="item.commit_hash" class="mb-5">
1717
<div>Commit message: <b>{{ item.commit_message }}</b></div>
1818
<div>Commit hash: <code>{{ item.commit_hash }}</code></div>
1919
</div>
2020

21-
<h3>Running info</h3>
21+
<h2 class="pb-2">Running info</h2>
2222

2323
<div class="mb-5">
2424
<div>Message: <b>{{ item.message || '—' }}</b></div>
@@ -34,7 +34,7 @@
3434
<div>{{ $t('duration') }}: {{ [item.start, item.end] | formatMilliseconds }}</div>
3535
</div>
3636

37-
<h3 v-if="item?.params">Task parameters</h3>
37+
<h2 v-if="item?.params" class="pb-2">Task parameters</h2>
3838
<div class="mb-5" v-if="item?.params">
3939
<div>Limit: {{ item.params.limit }}</div>
4040
<div>Debug: {{ item.params.debug }}</div>

web/src/components/TaskLogView.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
<div class="overflow-auto text-no-wrap px-5" style="margin-bottom: -40px;">
2626
<TaskStatus :status="item.status" data-testid="task-status" />
2727
<span class="ml-3 hidden-xs-only">
28-
Started by <b>{{ user?.name || '-' }}</b>
28+
29+
Started <span v-if="user">by <b>{{ user.name }}</b></span>
30+
2931
at <b>{{ item.start | formatDate }}</b>
3032
<v-icon
3133
class="ml-4" small style="transform: translateY(-1px)">mdi-clock-outline</v-icon>

0 commit comments

Comments
 (0)