mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 10:12:34 -05:00
withProperties -> withProps (#15876)
* withProperties -> withProps * Fix errors * remove , * fixes * Update azdata-test * Fix dacpac tests * Add required and remove added layout
This commit is contained in:
@@ -46,19 +46,19 @@ export class AddFileDialog {
|
||||
this._dialog.registerContent(async view => {
|
||||
this.view = view;
|
||||
this._fileNameInputBox = this.view.modelBuilder.inputBox()
|
||||
.withProperties({
|
||||
.withProps({
|
||||
enabled: true,
|
||||
width: '400px'
|
||||
}).component();
|
||||
|
||||
this._titleInputBox = this.view.modelBuilder.inputBox()
|
||||
.withProperties({
|
||||
.withProps({
|
||||
enabled: true,
|
||||
width: '400px'
|
||||
}).component();
|
||||
|
||||
this._saveLocationInputBox = this.view.modelBuilder.inputBox()
|
||||
.withProperties({
|
||||
.withProps({
|
||||
value: this._bookItem.contextValue === BookTreeItemType.savedBook ? this._bookItem.rootContentPath : path.dirname(this._bookItem.resourceUri.fsPath),
|
||||
enabled: false,
|
||||
width: '400px'
|
||||
|
||||
Reference in New Issue
Block a user