fix wrong dacfx wizard radio button count (#6991)

This commit is contained in:
Kim Santiago
2019-08-28 10:11:03 -07:00
committed by GitHub
parent 50a0b6e115
commit 953bd064bc

View File

@@ -39,6 +39,10 @@ export class SelectOperationPage extends BasePage {
let importComponent = await this.createImportRadioButton();
let exportComponent = await this.createExportRadioButton();
// default have the first radio button checked
this.deployRadioButton.checked = true;
this.deployRadioButton.focused = true;
this.form = this.view.modelBuilder.formContainer()
.withFormItems(
[
@@ -51,9 +55,6 @@ export class SelectOperationPage extends BasePage {
}).component();
await this.view.initializeModel(this.form);
// default have the first radio button checked
this.deployRadioButton.checked = true;
this.deployRadioButton.focused = true;
this.instance.setDoneButton(Operation.deploy);
return true;
}