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 {
877
877
} ) ) ;
878
878
879
879
const selectedDatabase = await window . showQuickPick ( dbItems , {
880
- placeHolder : "Select a database" ,
880
+ placeHolder : "Select an existing database from your workspace... " ,
881
881
ignoreFocusOut : true ,
882
882
} ) ;
883
883
@@ -919,7 +919,8 @@ export class DatabaseUI extends DisposableObject {
919
919
] ;
920
920
const selectedImportOption =
921
921
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..." ,
923
924
ignoreFocusOut : true ,
924
925
} ) ;
925
926
if ( ! selectedImportOption ) {
You can’t perform that action at this time.
0 commit comments