Skip to content

Commit cc2da02

Browse files
committed
feat(ui): task info
1 parent d4150b1 commit cc2da02

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

web/src/components/TaskDetails.vue

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@
77
<div>App: {{ template?.app }}</div>
88
</div>
99

10-
<h3>Start information</h3>
10+
<h3>Commit info</h3>
11+
12+
<div class="mb-4">
13+
<div v-if="item.message">Message: {{ item.message }}</div>
14+
<div>Commit message: {{ item.commit_message }}</div>
15+
<div>Commit hash: {{ item.commit_hash }}</div>
16+
</div>
17+
18+
<h3>Running info</h3>
1119
<v-row>
1220
<v-col class="pr-4">
1321
<v-list two-line subheader class="pa-0">
@@ -46,7 +54,14 @@
4654
</v-col>
4755
</v-row>
4856

49-
<h3>Parameters</h3>
57+
<h3>Task parameters</h3>
58+
<div class="mb-4">
59+
<div>Limit: {{ item.params.limit }}</div>
60+
<div>Debug: {{ item.params.debug }}</div>
61+
<div>Debug level: {{ item.params.debug_level }}</div>
62+
<div>Diff: {{ item.params.diff }}</div>
63+
<div>Environment: {{ item.enviroment }}</div>
64+
</div>
5065

5166
</div>
5267
</template>

web/src/components/TaskLogView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:class="{'task-log-view--with-message': item.message || item.commit_message}"
55
>
66

7-
<div class="px-5" style="margin-top: -12px; margin-bottom: 12px;
7+
<div class="px-5" style="margin-top: -18px; margin-bottom: 12px;
88
white-space: nowrap; overflow: hidden; text-overflow: ellipsis">
99
<span
1010
v-if="item.message"

0 commit comments

Comments
 (0)