Merge pull request #126272 from DonJayamanne/issue126271

Pass cell metadata and execution summary
This commit is contained in:
Johannes Rieken
2021-06-15 10:38:48 +02:00
committed by GitHub

View File

@@ -29,6 +29,8 @@ export namespace NotebookDto {
cellKind: cell.cellKind,
language: cell.language,
source: cell.source,
internalMetadata: cell.internalMetadata,
metadata: cell.metadata,
outputs: cell.outputs.map(toNotebookOutputDto)
};
}