Bring back hover state setting on cell model (#10758) (#10782)

This commit is contained in:
Chris LaFreniere
2020-06-05 17:43:05 -07:00
committed by GitHub
parent 7b382794e2
commit d7d4c26780

View File

@@ -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;