removing datasource from publish dialog for insiders (#11009)

This commit is contained in:
Udeesha Gautam
2020-06-21 21:32:39 -07:00
committed by GitHub
parent 06058d8925
commit 637bc8d5ba

View File

@@ -77,7 +77,8 @@ export class DeployDatabaseDialog {
private initializeDeployTab(): void {
this.deployTab.registerContent(async view => {
let selectConnectionRadioButtons = this.createRadioButtons(view);
// TODO : enable using this when data source creation is enabled
this.createRadioButtons(view);
this.targetConnectionFormComponent = this.createTargetConnectionComponent(view);
this.targetDatabaseTextBox = view.modelBuilder.inputBox().withProperties({
@@ -111,10 +112,11 @@ export class DeployDatabaseDialog {
{
title: constants.targetDatabaseSettings,
components: [
/* TODO : enable using this when data source creation is enabled
{
title: constants.selectConnectionRadioButtonsTitle,
component: selectConnectionRadioButtons
},
},*/
this.targetConnectionFormComponent,
{
title: constants.databaseNameLabel,