From c96118d2b587f5886041716d00fc42708805fb6c Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Wed, 9 Jan 2019 11:45:05 -0800 Subject: [PATCH] Fix activeCell nullref issue (#3689) --- src/sql/parts/notebook/notebook.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sql/parts/notebook/notebook.component.ts b/src/sql/parts/notebook/notebook.component.ts index e216b8b447..fc01cdfeb2 100644 --- a/src/sql/parts/notebook/notebook.component.ts +++ b/src/sql/parts/notebook/notebook.component.ts @@ -171,7 +171,6 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe if (this.model.activeCell) { this.model.activeCell.active = false; } - this.model.activeCell = null; this._changeRef.detectChanges(); }