From cd8f26ae9d65aa5d1071675c0f49b789b67bbed5 Mon Sep 17 00:00:00 2001 From: Aditya Bist Date: Fri, 13 Dec 2019 15:53:49 -0800 Subject: [PATCH] formatted file (#8677) --- extensions/agent/src/dialogs/jobDialog.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/extensions/agent/src/dialogs/jobDialog.ts b/extensions/agent/src/dialogs/jobDialog.ts index f29d6c4587..012616f57f 100644 --- a/extensions/agent/src/dialogs/jobDialog.ts +++ b/extensions/agent/src/dialogs/jobDialog.ts @@ -549,20 +549,20 @@ export class JobDialog extends AgentDialog { this.emailCheckBox = view.modelBuilder.checkBox().withProperties({ label: this.EmailCheckBoxString, - width: 80 + width: '20%' }).component(); this.pagerCheckBox = view.modelBuilder.checkBox().withProperties({ label: this.PagerCheckBoxString, - width: 80 + width: '20%' }).component(); this.eventLogCheckBox = view.modelBuilder.checkBox().withProperties({ label: this.EventLogCheckBoxString, - width: 250 + width: '5%' }).component(); this.deleteJobCheckBox = view.modelBuilder.checkBox().withProperties({ label: this.DeleteJobCheckBoxString, - width: 250 + width: '7%' }).component(); this.emailCheckBox.onChanged(() => { @@ -582,12 +582,12 @@ export class JobDialog extends AgentDialog { this.deleteJobConditionDropdown.enabled = this.deleteJobCheckBox.checked; }); - this.emailOperatorDropdown = view.modelBuilder.dropDown().withProperties({ width: 150 }).component(); - this.pagerOperatorDropdown = view.modelBuilder.dropDown().withProperties({ width: 150 }).component(); - this.emailConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: 150 }).component(); - this.pagerConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: 150 }).component(); - this.eventLogConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: 150 }).component(); - this.deleteJobConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: 150 }).component(); + this.emailOperatorDropdown = view.modelBuilder.dropDown().withProperties({ width: '90%' }).component(); + this.pagerOperatorDropdown = view.modelBuilder.dropDown().withProperties({ width: '90%' }).component(); + this.emailConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: '80%' }).component(); + this.pagerConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: '80%' }).component(); + this.eventLogConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: '80%' }).component(); + this.deleteJobConditionDropdown = view.modelBuilder.dropDown().withProperties({ width: '85%' }).component(); let emailContainer = this.createRowContainer(view).withItems([this.emailCheckBox, this.emailOperatorDropdown, this.emailConditionDropdown]).component();