mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
disable target connection input box in publish dialog (#11013)
This commit is contained in:
@@ -282,10 +282,10 @@ export class DeployDatabaseDialog {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private createTargetConnectionComponent(view: azdata.ModelView): azdata.FormComponent {
|
private createTargetConnectionComponent(view: azdata.ModelView): azdata.FormComponent {
|
||||||
// TODO: make this not editable
|
|
||||||
this.targetConnectionTextBox = view.modelBuilder.inputBox().withProperties({
|
this.targetConnectionTextBox = view.modelBuilder.inputBox().withProperties({
|
||||||
value: '',
|
value: '',
|
||||||
ariaLabel: constants.targetConnectionLabel
|
ariaLabel: constants.targetConnectionLabel,
|
||||||
|
enabled: false
|
||||||
}).component();
|
}).component();
|
||||||
|
|
||||||
this.targetConnectionTextBox.onTextChanged(() => {
|
this.targetConnectionTextBox.onTextChanged(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user