mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 01:25:36 -05:00
give more flexibility to the dialog width setting (#14570)
* give more flexibility to the dialog width setting * one more place
This commit is contained in:
@@ -68,7 +68,7 @@ export class AssessmentResultsDialog {
|
||||
public async openDialog(dialogName?: string) {
|
||||
if (!this._isOpen) {
|
||||
this._isOpen = true;
|
||||
this.dialog = azdata.window.createModelViewDialog(this.title, this.title, true);
|
||||
this.dialog = azdata.window.createModelViewDialog(this.title, this.title, '90%');
|
||||
|
||||
this.dialog.okButton.label = AssessmentResultsDialog.OkButtonText;
|
||||
this.dialog.okButton.onClick(async () => await this.execute());
|
||||
|
||||
Reference in New Issue
Block a user