Fix hygiene error

This commit is contained in:
tanhakabir 2021-11-10 19:20:14 -08:00
parent 30a33a1384
commit bf32baf62b
No known key found for this signature in database
GPG key ID: E2973F6D8BE7906E

View file

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