@@ -73,7 +73,7 @@ async function pickNamespaceOnServer(serverName: string): Promise<string> {
73
73
}
74
74
// Get user's choice of namespace
75
75
const namespace = await vscode . window . showQuickPick ( allNamespaces , {
76
- placeHolder : `Namespace on server '${ serverName } ' (${ connDisplayString } )` ,
76
+ title : `Pick a namespace on server '${ serverName } ' (${ connDisplayString } )` ,
77
77
ignoreFocusOut : true ,
78
78
} ) ;
79
79
return namespace ;
@@ -133,7 +133,7 @@ export async function addServerNamespaceToWorkspace(resource?: vscode.Uri): Prom
133
133
detail : "Documents opened in this folder will be read-only." ,
134
134
} ,
135
135
] ,
136
- { placeHolder : "Choose the type of access" , ignoreFocusOut : true }
136
+ { title : "Pick the type of access" , ignoreFocusOut : true }
137
137
)
138
138
. then ( ( mode ) => mode ?. value ) ;
139
139
}
@@ -194,7 +194,7 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
194
194
const filterType = await new Promise < string | undefined > ( ( resolve ) => {
195
195
let result : string ;
196
196
const quickPick = vscode . window . createQuickPick ( ) ;
197
- quickPick . placeholder = "Choose what to show in the workspace folder" ;
197
+ quickPick . title = "Pick what to show in the workspace folder" ;
198
198
quickPick . ignoreFocusOut = true ;
199
199
quickPick . items = [
200
200
{
@@ -203,11 +203,11 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
203
203
} ,
204
204
{
205
205
label : "$(file-code) Web Application Files" ,
206
- detail : "Choose a specific web application, or show all." ,
206
+ detail : "Pick a specific web application, or show all." ,
207
207
} ,
208
208
{
209
209
label : "$(files) Contents of a Server-side Project" ,
210
- detail : "Choose an existing project, or create a new one." ,
210
+ detail : "Pick an existing project, or create a new one." ,
211
211
} ,
212
212
] ;
213
213
quickPick . activeItems = [ project ? quickPick . items [ 2 ] : csp ? quickPick . items [ 1 ] : quickPick . items [ 0 ] ] ;
@@ -263,7 +263,7 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
263
263
let result : string ;
264
264
const allItem : vscode . QuickPickItem = { label : "All" } ;
265
265
const quickPick = vscode . window . createQuickPick ( ) ;
266
- quickPick . placeholder = "Pick a specific web application to show, or show all" ;
266
+ quickPick . title = "Pick a specific web application to show, or show all" ;
267
267
quickPick . ignoreFocusOut = true ;
268
268
quickPick . items = [
269
269
allItem ,
@@ -331,7 +331,7 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
331
331
const otherParams = await vscode . window . showQuickPick ( items , {
332
332
ignoreFocusOut : true ,
333
333
canPickMany : true ,
334
- placeHolder : "Add optional filters" ,
334
+ title : "Pick optional filters" ,
335
335
} ) ;
336
336
if ( ! otherParams ) {
337
337
return ;
0 commit comments