setting selected db name in drop down to current connection db name (#11912)

This commit is contained in:
Leila Lali
2020-08-31 14:44:08 -07:00
committed by GitHub
parent 81e81f1c49
commit 22c88cdd2e
8 changed files with 95 additions and 16 deletions

View File

@@ -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

View File

@@ -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
*/