Skip to content

Commit

Permalink
Backport PR jupyterlab#7020: Restore behavior of the "raises-exceptio…
Browse files Browse the repository at this point in the history
…n" cell tag
  • Loading branch information
blink1073 authored and MeeseeksDev[bot] committed Aug 16, 2019
1 parent b53c465 commit 10bfbe6
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 10bfbe6

Please sign in to comment.