Change markdown cell to text cell (#10715)

This commit is contained in:
Chris LaFreniere
2020-06-04 12:38:30 -07:00
committed by GitHub
parent cc3554e987
commit 258310ba81
2 changed files with 2 additions and 2 deletions

View File

@@ -422,7 +422,7 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe
let addCodeCellButton = new AddCellAction('notebook.AddCodeCell', localize('codePreview', "Code cell"), 'notebook-button masked-pseudo code');
addCodeCellButton.cellType = CellTypes.Code;
let addTextCellButton = new AddCellAction('notebook.AddTextCell', localize('textPreview', "Markdown cell"), 'notebook-button masked-pseudo markdown');
let addTextCellButton = new AddCellAction('notebook.AddTextCell', localize('textPreview', "Text cell"), 'notebook-button masked-pseudo markdown');
addTextCellButton.cellType = CellTypes.Markdown;