From d12010280598dd54f8d458087e0da6870e51a28a Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Sun, 20 Oct 2019 13:22:49 -0700 Subject: [PATCH] Bump up widths for pick, remove schedule buttons (#7517) --- extensions/agent/src/dialogs/notebookDialog.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/agent/src/dialogs/notebookDialog.ts b/extensions/agent/src/dialogs/notebookDialog.ts index 09dcb0b9ac..fad79c08df 100644 --- a/extensions/agent/src/dialogs/notebookDialog.ts +++ b/extensions/agent/src/dialogs/notebookDialog.ts @@ -187,11 +187,11 @@ export class NotebookDialog extends AgentDialog { this.pickScheduleButton = view.modelBuilder.button().withProperties({ label: PickScheduleButtonString, - width: 100 + width: 110 }).component(); this.removeScheduleButton = view.modelBuilder.button().withProperties({ label: RemoveScheduleButtonString, - width: 100 + width: 110 }).component(); this.pickScheduleButton.onDidClick(() => { let pickScheduleDialog = new PickScheduleDialog(this.model.ownerUri, this.model.name);