From fa4f11cf16dcc93ec296e988537eb4226769cb43 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 5 Nov 2020 10:55:39 +0100 Subject: [PATCH] fix stray console.log //cc @rebornix --- src/vs/editor/contrib/colorPicker/colorContributions.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vs/editor/contrib/colorPicker/colorContributions.ts b/src/vs/editor/contrib/colorPicker/colorContributions.ts index 31f1fb9ea9b..4a997061b43 100644 --- a/src/vs/editor/contrib/colorPicker/colorContributions.ts +++ b/src/vs/editor/contrib/colorPicker/colorContributions.ts @@ -37,8 +37,6 @@ export class ColorContribution extends Disposable implements IEditorContribution return; } - console.log(mouseEvent.target); - const hoverOnColorDecorator = [...mouseEvent.target.element?.classList.values() || []].find(className => className.startsWith('ced-colorBox')); if (!hoverOnColorDecorator) { return; -- GitLab