From 4339b5b7d35a2c55259d72cd665de8db966b64ab Mon Sep 17 00:00:00 2001 From: Hale Rankin Date: Fri, 5 Jun 2020 17:41:14 -0700 Subject: [PATCH] Switched order of the two dropdowns in main toolbar in preview. (#10717) * Switched order of the two dropdowns in main toolbar in preview. * Reverting this single line b/c it's out of scope for the PR. --- .../workbench/contrib/notebook/browser/notebook.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/contrib/notebook/browser/notebook.component.ts b/src/sql/workbench/contrib/notebook/browser/notebook.component.ts index 854e33a1b6..a1545876d3 100644 --- a/src/sql/workbench/contrib/notebook/browser/notebook.component.ts +++ b/src/sql/workbench/contrib/notebook/browser/notebook.component.ts @@ -460,8 +460,8 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe { element: buttonDropdownContainer }, { action: this._runAllCellsAction }, { element: Taskbar.createTaskbarSeparator() }, - { element: attachToContainer }, { element: kernelContainer }, + { element: attachToContainer }, { element: spacerElement }, { action: collapseCellsAction }, { action: clearResultsButton },