Skip to content

Commit

Permalink
Restore behavior of the "raises-exception" cell tag
Browse files Browse the repository at this point in the history
  • Loading branch information
joelostblom committed Aug 15, 2019
1 parent 860877e commit 282c361
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 282c361

Please sign in to comment.