From 94f7b329d6a82e101dc0cd64dff087318e3631fc Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 23 Feb 2021 18:28:25 -0800 Subject: [PATCH] Remove CSS Class that doesn't exist (#14401) --- .../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 8253f30d9c..0bde6c3371 100644 --- a/src/sql/workbench/contrib/notebook/browser/notebook.component.ts +++ b/src/sql/workbench/contrib/notebook/browser/notebook.component.ts @@ -509,7 +509,7 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe action.tooltip = action.label; action.label = ''; } - return new LabeledMenuItemActionItem(action, this.keybindingService, this.notificationService, 'notebook-button'); + return new LabeledMenuItemActionItem(action, this.keybindingService, this.notificationService); } return undefined; }