Skip to content

Commit

Permalink
Update field names for NotebookCellData (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanhakabir committed May 11, 2021
1 parent 7441155 commit ff455a2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ export class SampleContentSerializer implements vscode.NotebookSerializer {
for (const cell of data.cells) {
contents.cells.push({
kind: cell.kind,
language: cell.language,
value: cell.source,
language: cell.languageId,
value: cell.value,
outputs: asRawOutput(cell)
});
}
Expand Down

0 comments on commit ff455a2

Please sign in to comment.