Skip to content

Commit

Permalink
Fix hygiene error
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhakabir committed Nov 11, 2021
1 parent 30a33a1 commit bf32baf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ registerAction2(class ExecuteCellInsertBelow extends NotebookCellAction {
context.notebookEditor.focusNotebookCell(newCell, newFocusMode);
}

if (context.cell.cellKind == CellKind.Markup) {
if (context.cell.cellKind === CellKind.Markup) {
context.cell.updateEditState(CellEditState.Preview, EXECUTE_CELL_INSERT_BELOW);
} else {
runCell(accessor, context);
Expand Down

0 comments on commit bf32baf

Please sign in to comment.