File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ export class Commands {
101
101
if ( args . length === 0 ) {
102
102
const quickPick = vscode . window . createQuickPick ( )
103
103
quickPick . value = "owner:me "
104
- quickPick . placeholder = "Filter "
105
- quickPick . title = "Select a workspace to connect"
104
+ quickPick . placeholder = "owner:me template:go "
105
+ quickPick . title = `Connect to a workspace`
106
106
let lastWorkspaces : Workspace [ ]
107
107
quickPick . onDidChangeValue ( ( value ) => {
108
108
quickPick . busy = true
@@ -112,15 +112,15 @@ export class Commands {
112
112
. then ( ( workspaces ) => {
113
113
lastWorkspaces = workspaces . workspaces
114
114
const items : vscode . QuickPickItem [ ] = workspaces . workspaces . map ( ( workspace ) => {
115
- let icon = "$(circle-filled )"
115
+ let icon = "$(debug-start )"
116
116
if ( workspace . latest_build . status !== "running" ) {
117
- icon = "$(circle-outline )"
117
+ icon = "$(debug-stop )"
118
118
}
119
119
const status =
120
120
workspace . latest_build . status . substring ( 0 , 1 ) . toUpperCase ( ) + workspace . latest_build . status . substring ( 1 )
121
121
return {
122
122
alwaysShow : true ,
123
- label : `${ icon } ${ workspace . name } ` ,
123
+ label : `${ icon } ${ workspace . owner_name } / ${ workspace . name } ` ,
124
124
detail : `Template: ${ workspace . template_display_name || workspace . template_name } • Status: ${ status } ` ,
125
125
}
126
126
} )
You can’t perform that action at this time.
0 commit comments