mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
fix wrong dacfx wizard radio button count (#6991)
This commit is contained in:
@@ -39,6 +39,10 @@ export class SelectOperationPage extends BasePage {
|
|||||||
let importComponent = await this.createImportRadioButton();
|
let importComponent = await this.createImportRadioButton();
|
||||||
let exportComponent = await this.createExportRadioButton();
|
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()
|
this.form = this.view.modelBuilder.formContainer()
|
||||||
.withFormItems(
|
.withFormItems(
|
||||||
[
|
[
|
||||||
@@ -51,9 +55,6 @@ export class SelectOperationPage extends BasePage {
|
|||||||
}).component();
|
}).component();
|
||||||
await this.view.initializeModel(this.form);
|
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);
|
this.instance.setDoneButton(Operation.deploy);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user