mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -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 {
|
||||
// TODO: make this not editable
|
||||
this.targetConnectionTextBox = view.modelBuilder.inputBox().withProperties({
|
||||
value: '',
|
||||
ariaLabel: constants.targetConnectionLabel
|
||||
ariaLabel: constants.targetConnectionLabel,
|
||||
enabled: false
|
||||
}).component();
|
||||
|
||||
this.targetConnectionTextBox.onTextChanged(() => {
|
||||
|
||||
Reference in New Issue
Block a user