rename context key databasename to databaseName (#903)

* rename context key databasename to databaseName

* maintain correct context on database name
This commit is contained in:
Anthony Dresser
2018-03-16 19:52:33 -07:00
committed by GitHub
parent 38bedea0bd
commit 40550d0840
4 changed files with 21 additions and 9 deletions

View File

@@ -5,7 +5,8 @@
import { DataService } from 'sql/parts/grid/services/dataService';
import { IConnectionProfile } from 'sql/parts/connection/common/interfaces';
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey';
import { ConnectionContextkey } from 'sql/parts/connection/common/connectionContextKey';
export interface BootstrapParams {
}
@@ -22,6 +23,7 @@ export interface DashboardComponentParams extends BootstrapParams {
connection: IConnectionProfile;
ownerUri: string;
scopedContextService: IContextKeyService;
connectionContextKey: ConnectionContextkey;
}
export interface TaskDialogComponentParams extends BootstrapParams {