Skip to content

Commit 7ad6f9e

Browse files
committed
Added status message output. Needs to be tested
1 parent 2e2e24f commit 7ad6f9e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

frontend/client/views/pipelines/create.vue

+8-1
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,17 @@
9797
<template slot="table-row" slot-scope="props">
9898
<td>{{ props.row.pipeline.name }}</td>
9999
<td class="progress-bar-height">
100-
<div class="progress-bar-middle" v-bind:class="{ blink: props.row.status < 100 }" v-if="props.row.statustype === 'running'">
100+
<div class="progress-bar-middle blink" v-if="props.row.statustype === 'running'">
101101
<progress-bar :type="'info'" :size="'small'" :value="props.row.status" :max="100" :show-label="false"></progress-bar>
102102
</div>
103103
<div v-else-if="props.row.statustype === 'success'" style="color: green;">{{ props.row.statustype }}</div>
104104
<div v-else style="color: red;">{{ props.row.statustype }}</div>
105105
</td>
106106
<td>{{ props.row.pipeline.type }}</td>
107107
<td :title="props.row.created" v-tippy="{ arrow : true, animation : 'shift-away'}">{{ convertTime(props.row.created) }}</td>
108+
<td>
109+
<span :title="props.row.errmsg" v-tippy="{ arrow : true, animation : 'shift-away'}" class="is-blue">Output</span>
110+
</td>
108111
</template>
109112
<div slot="emptystate" class="empty-table-text">
110113
No pipelines found in database.
@@ -235,6 +238,10 @@ export default {
235238
{
236239
label: 'Creation date',
237240
field: 'created'
241+
},
242+
{
243+
label: 'Status Output',
244+
field: 'errmsg'
238245
}
239246
],
240247
historyRows: [],

0 commit comments

Comments
 (0)