Skip to content

Commit

Permalink
fix dialogs width
Browse files Browse the repository at this point in the history
  • Loading branch information
barbaravaldez committed Sep 13, 2023
1 parent 7e401bf commit 2ba6a47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions extensions/mssql/src/objectManagement/ui/databaseDialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export class DatabaseDialog extends ObjectManagementDialogBase<Database, Databas


constructor(objectManagementService: IObjectManagementService, options: ObjectManagementDialogOptions) {
options.width = '645px';
super(objectManagementService, options);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export class ServerPropertiesDialog extends ObjectManagementDialogBase<Server, S
private shouldRestartServer: boolean = false;

constructor(objectManagementService: IObjectManagementService, options: ObjectManagementDialogOptions) {
options.width = '560px'
super(objectManagementService, options);
this.disposables.push(this.dialogObject.onClosed(async (reason: azdata.window.CloseReason) => {
if (reason === 'ok') {
Expand Down

0 comments on commit 2ba6a47

Please sign in to comment.