@@ -73,7 +73,7 @@ async function pickNamespaceOnServer(serverName: string): Promise<string> {
7373 }
7474 // Get user's choice of namespace
7575 const namespace = await vscode . window . showQuickPick ( allNamespaces , {
76- placeHolder : `Namespace on server '${ serverName } ' (${ connDisplayString } )` ,
76+ title : `Pick a namespace on server '${ serverName } ' (${ connDisplayString } )` ,
7777 ignoreFocusOut : true ,
7878 } ) ;
7979 return namespace ;
@@ -133,7 +133,7 @@ export async function addServerNamespaceToWorkspace(resource?: vscode.Uri): Prom
133133 detail : "Documents opened in this folder will be read-only." ,
134134 } ,
135135 ] ,
136- { placeHolder : "Choose the type of access" , ignoreFocusOut : true }
136+ { title : "Pick the type of access" , ignoreFocusOut : true }
137137 )
138138 . then ( ( mode ) => mode ?. value ) ;
139139 }
@@ -194,7 +194,7 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
194194 const filterType = await new Promise < string | undefined > ( ( resolve ) => {
195195 let result : string ;
196196 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" ;
198198 quickPick . ignoreFocusOut = true ;
199199 quickPick . items = [
200200 {
@@ -203,11 +203,11 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
203203 } ,
204204 {
205205 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." ,
207207 } ,
208208 {
209209 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." ,
211211 } ,
212212 ] ;
213213 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
263263 let result : string ;
264264 const allItem : vscode . QuickPickItem = { label : "All" } ;
265265 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" ;
267267 quickPick . ignoreFocusOut = true ;
268268 quickPick . items = [
269269 allItem ,
@@ -331,7 +331,7 @@ async function modifyWsFolderUri(uri: vscode.Uri): Promise<vscode.Uri | undefine
331331 const otherParams = await vscode . window . showQuickPick ( items , {
332332 ignoreFocusOut : true ,
333333 canPickMany : true ,
334- placeHolder : "Add optional filters" ,
334+ title : "Pick optional filters" ,
335335 } ) ;
336336 if ( ! otherParams ) {
337337 return ;
0 commit comments