Skip to content

Commit

Permalink
Fix #94058, #93956.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Mar 31, 2020
1 parent 34e5194 commit 563997c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ export interface BaseCellRenderTemplate {
toolbar: ToolBar;
focusIndicator: HTMLElement;
disposables: DisposableStore;
toJSON: () => any;
}

export interface MarkdownCellRenderTemplate extends BaseCellRenderTemplate {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ export class MarkdownCellRenderer extends AbstractCellRenderer implements IListR
focusIndicator,
disposables,
toolbar,
toJSON: () => { return {}; }
};
}

Expand Down Expand Up @@ -358,7 +359,7 @@ export class CodeCellRenderer extends AbstractCellRenderer implements IListRende
editor,
disposables,
betweenCellContainer: betweenCellContainer,
// betweenCellToolbar: betweenCellActionsToolbar
toJSON: () => { return {}; }
};
}

Expand Down

0 comments on commit 563997c

Please sign in to comment.