Disabling options button for the release (#20040)

* Disabling options button for the release

* Updated comment
This commit is contained in:
Sai Avishkar Sreerama
2022-07-14 17:36:16 -05:00
committed by GitHub
parent 8a6c8536f5
commit d76d483623

View File

@@ -145,6 +145,7 @@ export class PublishDatabaseDialog {
this.connectionRow = this.createConnectionRow(view);
this.databaseRow = this.createDatabaseRow(view);
const displayOptionsButton = this.createOptionsButton(view);
displayOptionsButton.enabled = false;
const horizontalFormSection = view.modelBuilder.flexContainer().withLayout({ flexFlow: 'column' }).component();
horizontalFormSection.addItems([profileRow, this.databaseRow]);
@@ -171,10 +172,12 @@ export class PublishDatabaseDialog {
title: constants.selectConnectionRadioButtonsTitle,
component: selectConnectionRadioButtons
},*/
/* TODO : Disabling deployment options for the July release
{
component: displayOptionsButton,
title: ''
}
*/
]
}
], {