diff --git a/src/sql/workbench/contrib/notebook/browser/cellViews/code.component.ts b/src/sql/workbench/contrib/notebook/browser/cellViews/code.component.ts index 772167e072..1cfececdb8 100644 --- a/src/sql/workbench/contrib/notebook/browser/cellViews/code.component.ts +++ b/src/sql/workbench/contrib/notebook/browser/cellViews/code.component.ts @@ -79,6 +79,10 @@ export class CodeComponent extends CellView implements OnInit, OnChanges { this._activeCellId = value; } + @Input() set hover(value: boolean) { + this.cellModel.hover = value; + } + protected _actionBar: Taskbar; private readonly _minimumHeight = 30; private readonly _maximumHeight = 4000;