File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
src/components/cylc/workspace Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
85
85
</div >
86
86
87
87
<!-- n-window selector -->
88
- <v-chip
88
+ <v-btn
89
89
:disabled =" isStopped"
90
- link
90
+ variant =" tonal"
91
+ rounded
91
92
size =" small"
92
93
data-cy =" n-win-selector"
93
94
>
94
95
N={{ nWindow }}
96
+ <template #append >
97
+ <v-icon
98
+ :icon =" $options.icons.mdiChevronDown"
99
+ class =" mx-n1"
100
+ />
101
+ </template >
95
102
<v-menu
96
103
activator =" parent"
97
104
:close-on-content-click =" false"
@@ -122,7 +129,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
122
129
</v-card-text >
123
130
</v-card >
124
131
</v-menu >
125
- </v-chip >
132
+ </v-btn >
126
133
127
134
<!-- workflow status message -->
128
135
<span class =" status-msg text-body-2" >
@@ -207,7 +214,8 @@ import {
207
214
mdiPlusBoxMultiple ,
208
215
mdiStop ,
209
216
mdiViewList ,
210
- mdiAccount
217
+ mdiAccount ,
218
+ mdiChevronDown ,
211
219
} from ' @mdi/js'
212
220
import { startCase } from ' lodash'
213
221
import { until } from ' @/utils'
@@ -462,7 +470,8 @@ export default {
462
470
run: mdiPlay,
463
471
stop: mdiStop,
464
472
mdiCog,
465
- mdiAccount
473
+ mdiAccount,
474
+ mdiChevronDown,
466
475
},
467
476
}
468
477
< / script>
You can’t perform that action at this time.
0 commit comments