Skip to content

Commit

Permalink
Re #103881.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Aug 13, 2020
1 parent d8463db commit 35a1137
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/vs/workbench/contrib/notebook/browser/notebookServiceImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,18 @@ export class NotebookService extends Disposable implements INotebookService, ICu
cell.language,
cell.cellKind,
[],
cell.metadata
{
editable: cell.metadata?.editable,
runnable: cell.metadata?.runnable,
breakpointMargin: cell.metadata?.breakpointMargin,
hasExecutionOrder: cell.metadata?.hasExecutionOrder,
executionOrder: cell.metadata?.executionOrder,
statusMessage: cell.metadata?.statusMessage,
lastRunDuration: cell.metadata?.lastRunDuration,
inputCollapsed: cell.metadata?.inputCollapsed,
outputCollapsed: cell.metadata?.outputCollapsed,
custom: cell.metadata?.custom
}
);
} else {
return cell;
Expand Down

0 comments on commit 35a1137

Please sign in to comment.