Skip to content

Commit

Permalink
updated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dwootton committed Jul 15, 2024
1 parent 7512f5d commit 542e438
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/jupyter/src/execute/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@ export function notebookFromMdast(
if (codeCell.identifier) idkmap[codeCell.identifier] = target;
if (output.identifier) idkmap[output.identifier] = target;

//TODO get metaData piped through
// TODO Future Fix: pass through metadata to sync passive and active state
const metadata = {};

return new core.ThebeCodeCell(
target.cellId,
notebook.id,
codeCell.value ?? '', //source
[block.data] ?? [{}], //TODO get outputs
[block.data] ?? [{}],
config,
metadata, //metadata
metadata,
notebook.rendermime,
);
} else {
Expand Down

0 comments on commit 542e438

Please sign in to comment.