Skip to content

Commit

Permalink
Fix a bug in my last PR (#26053)
Browse files Browse the repository at this point in the history
* Create project from quickpick

* Fix test

* Fix test

* Fix a bug in my last PR
  • Loading branch information
zijchen committed Dec 11, 2024
1 parent 30c5519 commit dc75b4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1581,7 +1581,7 @@ export class ProjectsController {
const databaseName = (await utils.getVscodeMssqlApi()).getDatabaseNameFromTreeNode(treeNodeContext);
(profile as mssqlVscode.IConnectionInfo).database = databaseName;
}
await createNewProjectFromDatabaseWithQuickpick(profile as mssqlVscode.IConnectionInfo, this.createProjectFromDatabaseCallback);
await createNewProjectFromDatabaseWithQuickpick(profile as mssqlVscode.IConnectionInfo, (model: ImportDataModel, connectionInfo?: string | mssqlVscode.IConnectionInfo, serverName?: string) => this.createProjectFromDatabaseCallback(model, connectionInfo, serverName));
return undefined;
}

Expand Down

0 comments on commit dc75b4c

Please sign in to comment.