File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
extensions/ql-vscode/src/databases Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -877,7 +877,7 @@ export class DatabaseUI extends DisposableObject {
877877 } ) ) ;
878878
879879 const selectedDatabase = await window . showQuickPick ( dbItems , {
880- placeHolder : "Select a database" ,
880+ placeHolder : "Select an existing database from your workspace... " ,
881881 ignoreFocusOut : true ,
882882 } ) ;
883883
@@ -919,7 +919,8 @@ export class DatabaseUI extends DisposableObject {
919919 ] ;
920920 const selectedImportOption =
921921 await window . showQuickPick < DatabaseImportQuickPickItems > ( importOptions , {
922- placeHolder : "Import a database from..." ,
922+ placeHolder :
923+ "Import a new database from the cloud or your local machine..." ,
923924 ignoreFocusOut : true ,
924925 } ) ;
925926 if ( ! selectedImportOption ) {
You can’t perform that action at this time.
0 commit comments