File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ const MINUTES = [
355
355
356
356
function formatDateInTZ (date , tz ) {
357
357
if (date == null ) {
358
- return ' - ' ;
358
+ return ' — ' ;
359
359
}
360
360
const parts = new Intl.DateTimeFormat (' en-GB' , {
361
361
timeZone: tz,
@@ -375,7 +375,7 @@ function formatDateInTZ(date, tz) {
375
375
376
376
function formatTimeInTZ (date , tz ) {
377
377
if (date == null ) {
378
- return ' - ' ;
378
+ return ' — ' ;
379
379
}
380
380
381
381
const parts = new Intl.DateTimeFormat (' en-GB' , {
Original file line number Diff line number Diff line change 83
83
<td ><b >{{ $t('integration') }}</b ></td >
84
84
<td >{{ item.integration_id }}</td >
85
85
</tr >
86
+ <tr v-else-if =" item.schedule_id != null" >
87
+ <td ><b >{{ $t('schedule') }}</b ></td >
88
+ <td >{{ item.schedule_id }}</td >
89
+ </tr >
86
90
<tr >
87
91
<td ><b >{{ $t('created') }}</b ></td >
88
92
<td >{{ item.created | formatDate }}</td >
117
121
<v-simple-table class =" pa-0 TaskDetails__table" >
118
122
<template v-slot :default >
119
123
<tbody >
124
+ <tr >
125
+ <td ><b >Branch</b ></td >
126
+ <td >
127
+ {{ item.get_branch || '—' }}
128
+ </td >
129
+ </tr >
120
130
<tr >
121
131
<td ><b >Limit</b ></td >
122
132
<td >
131
141
</tr >
132
142
<tr >
133
143
<td ><b >Debug level</b ></td >
134
- <td >{{ item.params.debug_level }}</td >
144
+ <td >{{ item.params.debug_level || '—' }}</td >
135
145
</tr >
136
146
<tr >
137
147
<td ><b >Diff</b > <code >--diff</code ></td >
143
153
</tr >
144
154
<tr >
145
155
<td ><b >Environment</b ></td >
146
- <td >{{ item.environment }}</td >
156
+ <td >
157
+ {{ !item.environment || item.environment === '{}' ? '—' : item.environment }}
158
+ </td >
147
159
</tr >
148
160
</tbody >
149
161
</template >
You can’t perform that action at this time.
0 commit comments