File tree 1 file changed +8
-1
lines changed
frontend/client/views/pipelines
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 97
97
<template slot="table-row" slot-scope="props">
98
98
<td >{{ props.row.pipeline.name }}</td >
99
99
<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'" >
101
101
<progress-bar :type =" 'info'" :size =" 'small'" :value =" props.row.status" :max =" 100" :show-label =" false" ></progress-bar >
102
102
</div >
103
103
<div v-else-if =" props.row.statustype === 'success'" style =" color : green ;" >{{ props.row.statustype }}</div >
104
104
<div v-else style =" color : red ;" >{{ props.row.statustype }}</div >
105
105
</td >
106
106
<td >{{ props.row.pipeline.type }}</td >
107
107
<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 >
108
111
</template >
109
112
<div slot =" emptystate" class =" empty-table-text" >
110
113
No pipelines found in database.
@@ -235,6 +238,10 @@ export default {
235
238
{
236
239
label: ' Creation date' ,
237
240
field: ' created'
241
+ },
242
+ {
243
+ label: ' Status Output' ,
244
+ field: ' errmsg'
238
245
}
239
246
],
240
247
historyRows: [],
You can’t perform that action at this time.
0 commit comments