File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
26
26
27
27
<template >
28
28
<v-container
29
- class =" c-log py-0 "
29
+ class =" c-log py-1 "
30
30
fluid
31
31
>
32
32
<!-- the controls -->
@@ -36,7 +36,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
36
36
class =" job-workflow-toggle"
37
37
v-model =" jobLog"
38
38
divided
39
+ mandatory
39
40
variant =" outlined"
41
+ color =" primary"
40
42
>
41
43
<v-btn >Workflow</v-btn >
42
44
<v-btn >Job</v-btn >
@@ -52,16 +54,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
52
54
<v-row dense >
53
55
<v-col cols =" 8" >
54
56
<v-text-field
55
- class =" flex-grow-1 flex-column job-id-input"
56
57
v-if =" jobLog"
58
+ class =" flex-grow-1 flex-column job-id-input"
57
59
v-model =" relativeID"
58
60
placeholder =" cycle/task/job"
59
61
hide-details
60
62
clearable
61
63
/>
62
64
<v-text-field
63
- class =" workflow-id-input"
64
65
v-else
66
+ class =" workflow-id-input"
65
67
v-model =" workflowId"
66
68
disabled
67
69
hide-details
@@ -82,14 +84,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
82
84
83
85
<!-- the status line -->
84
86
<v-row dense >
85
- <v-col v-if =" results.path" style =" white-space : pre ; overflow-x : scroll " >
87
+ <v-col
88
+ v-if =" results.path"
89
+ class =" d-flex align-center overflow-x-auto"
90
+ style =" white-space : pre "
91
+ >
86
92
<v-chip
87
93
class =" connected-icon"
88
94
v-if =" results.connected"
89
95
color =" green"
90
96
variant =" outlined"
97
+ :prepend-icon =" $options.icons.mdiPowerPlug"
98
+ class =" flex-shrink-0"
91
99
>
92
- <v-icon >{{ $options.icons.mdiPowerPlug }}</v-icon >
93
100
Connected
94
101
</v-chip >
95
102
<v-chip
@@ -98,8 +105,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
98
105
color =" red"
99
106
@click =" updateQuery"
100
107
variant =" outlined"
108
+ :prepend-icon =" $options.icons.mdiPowerPlugOff"
109
+ class =" flex-shrink-0"
101
110
>
102
- <v-icon >{{ $options.icons.mdiPowerPlugOff }}</v-icon >
103
111
Reconnect
104
112
</v-chip >
105
113
<span
You can’t perform that action at this time.
0 commit comments