We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1bd5c commit d440c10Copy full SHA for d440c10
1 file changed
extensions/ql-vscode/src/databases/local-databases-ui.ts
@@ -877,7 +877,7 @@ export class DatabaseUI extends DisposableObject {
877
}));
878
879
const selectedDatabase = await window.showQuickPick(dbItems, {
880
- placeHolder: "Select a database",
+ placeHolder: "Select an existing database from your workspace...",
881
ignoreFocusOut: true,
882
});
883
@@ -919,7 +919,8 @@ export class DatabaseUI extends DisposableObject {
919
];
920
const selectedImportOption =
921
await window.showQuickPick<DatabaseImportQuickPickItems>(importOptions, {
922
- placeHolder: "Import a database from...",
+ placeHolder:
923
+ "Import a new database from the cloud or your local machine...",
924
925
926
if (!selectedImportOption) {
0 commit comments