Fixing the provider name (#1051)

This commit is contained in:
Anup N. Kamath
2018-04-03 18:03:08 -07:00
committed by GitHub
parent f9b2136494
commit 90454fbe87

View File

@@ -204,12 +204,14 @@ export class ConnectionDialogService implements IConnectionDialogService {
private handleShowUiComponent(input: OnShowUIResponse) {
this._currentProviderType = input.selectedProviderType;
this._model.providerName = this.getCurrentProviderName();
this._model = new ConnectionProfile(this._capabilitiesService, this._model);
this.uiController.showUiComponent(input.container);
}
private handleInitDialog() {
this.uiController.initDialog(this._model);
}
private handleFillInConnectionInputs(connectionInfo: IConnectionProfile): void {