mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
setting selected db name in drop down to current connection db name (#11912)
This commit is contained in:
@@ -48,6 +48,13 @@ export class LocalCondaPackageManageProvider implements IPackageManageProvider {
|
||||
return this.jupyterInstallation.installCondaPackages(packages, useMinVersion);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns current location
|
||||
*/
|
||||
public async getCurrentLocation(): Promise<string | undefined> {
|
||||
return Promise.resolve(constants.localhostName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Uninstalls given packages
|
||||
* @param packages Packages to uninstall
|
||||
|
||||
@@ -66,6 +66,13 @@ export class LocalPipPackageManageProvider implements IPackageManageProvider {
|
||||
return Promise.resolve(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns current location
|
||||
*/
|
||||
public async getCurrentLocation(): Promise<string | undefined> {
|
||||
return Promise.resolve(constants.localhostName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns location title
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user