File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
>
8
8
<div class =" status" >
9
9
<p :class =" build.build.status" >{{ build.build.status | formatStatus }}</p >
10
- <span v-if =" build.status == 'running'" >
10
+ <span v-if =" build.build. status == 'running'" >
11
11
{{ build.build.started*1000 | formatTimeAgo }} ago
12
12
</span >
13
- <span v-else-if =" build.status != 'pending' " >
13
+ <span v-else-if =" build.build. status != 'pending' " >
14
14
{{ formatBuildDuration(build) }}
15
15
</span >
16
16
<span v-else >
@@ -72,7 +72,7 @@ export default {
72
72
formatStatus (status ) {
73
73
let symbol = ' ' ;
74
74
if (status === ' success' ) symbol = ' ✔' ;
75
- if (status === ' failure' || status === ' error' ) symbol = ' ✘' ;
75
+ if (status === ' failure' || status === ' error' || status === ' killed ' ) symbol = ' ✘' ;
76
76
if (status === ' running' ) symbol = ' ❖' ;
77
77
if (status === ' skipped' ) symbol = ' ↠' ;
78
78
return ` ${ symbol} ` ;
You can’t perform that action at this time.
0 commit comments