Skip to content

Commit

Permalink
Merge pull request #7020 from joelostblom/restore-raises-exception
Browse files Browse the repository at this point in the history
Restore behavior of the "raises-exception" cell tag
  • Loading branch information
blink1073 committed Aug 16, 2019
2 parents 98f1a9a + 282c361 commit 7d0b052
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/cells/src/widget.ts
Expand Up @@ -1020,7 +1020,11 @@ export namespace CodeCell {
}

let cellId = { cellId: model.id };
metadata = { ...metadata, ...cellId };
metadata = {
...model.metadata.toJSON(),
...metadata,
...cellId
};
model.executionCount = null;
cell.outputHidden = false;
cell.setPrompt('*');
Expand Down

0 comments on commit 7d0b052

Please sign in to comment.