Skip to content

Commit d440c10

Browse files
Make placeholder messages more descriptive
1 parent bb1bd5c commit d440c10

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

extensions/ql-vscode/src/databases/local-databases-ui.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)