We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b854bc commit 8b3add8Copy full SHA for 8b3add8
extensions/ql-vscode/src/databases/local-databases-ui.ts
@@ -364,14 +364,9 @@ export class DatabaseUI extends DisposableObject {
364
}
365
366
private async handleChooseDatabaseFoldersParentFromPalette(): Promise<void> {
367
- return withProgress(
368
- async (progress) => {
369
- await this.chooseDatabasesParentFolder(progress);
370
- },
371
- {
372
- title: "Importing all databases contained in parent folder",
373
374
- );
+ return withProgress(async (progress) => {
+ await this.chooseDatabasesParentFolder(progress);
+ });
375
376
377
private async handleSetDefaultTourDatabase(): Promise<void> {
0 commit comments