File tree Expand file tree Collapse file tree 2 files changed +17
-7
lines changed Expand file tree Collapse file tree 2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 67
67
font-size : 14px ;
68
68
color : white ;
69
69
border-radius : 10px ;
70
- white-space : wrap ;
71
- margin-top : 5px ; margin-bottom : 5px ; "
70
+ white-space : pre-wrap ;
71
+ margin-top : 5px ;
72
+ margin-bottom : 5px ; "
72
73
73
74
class =" pa-2"
74
75
>{{ item.error.trim() }}</pre >
Original file line number Diff line number Diff line change 106
106
</v-card >
107
107
</v-col >
108
108
<v-col cols =" 12" md =" 6" >
109
- <v-card v-if =" item?.params" >
109
+ <v-card
110
+ v-if =" item?.params"
111
+ :color =" $vuetify.theme.dark ? '#212121' : 'white'"
112
+ style =" background : #8585850f "
113
+ class =" mb-5"
114
+ >
110
115
<v-card-title >Task parameters</v-card-title >
111
116
<v-card-text >
112
117
<v-simple-table class =" pa-0 TaskDetails__table" >
113
118
<template v-slot :default >
114
119
<tbody >
115
120
<tr >
116
121
<td ><b >Limit</b ></td >
117
- <td >{{ item.params.limit }}</td >
122
+ <td >
123
+ {{ item.params.limit ? 'Yes' : 'No' }}
124
+ </td >
118
125
</tr >
119
126
<tr >
120
127
<td ><b >Debug</b ></td >
121
- <td >{{ item.params.debug }}</td >
128
+ <td >
129
+ {{ item.params.debug ? 'Yes' : 'No' }}
130
+ </td >
122
131
</tr >
123
132
<tr >
124
133
<td ><b >Debug level</b ></td >
125
134
<td >{{ item.params.debug_level }}</td >
126
135
</tr >
127
136
<tr >
128
137
<td ><b >Diff</b > <code >--diff</code ></td >
129
- <td >{{ item.params.diff }}</td >
138
+ <td >{{ item.params.diff ? 'Yes' : 'No' }}</td >
130
139
</tr >
131
140
<tr >
132
141
<td ><b >Dry run</b > <code >--check</code ></td >
133
- <td >{{ item.params.dry_run }}</td >
142
+ <td >{{ item.params.dry_run ? 'Yes' : 'No' }}</td >
134
143
</tr >
135
144
<tr >
136
145
<td ><b >Environment</b ></td >
You can’t perform that action at this time.
0 commit comments