Skip to content

Commit

Permalink
Merge pull request #7033 from meeseeksmachine/auto-backport-of-pr-702…
Browse files Browse the repository at this point in the history
…0-on-1.0.x

Backport PR #7020 on branch 1.0.x (Restore behavior of the "raises-exception" cell tag)
  • Loading branch information
blink1073 committed Aug 16, 2019
2 parents b53c465 + 10bfbe6 commit 6ef8d76
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 6ef8d76

Please sign in to comment.