Bugfix: error with deep copies of lab cell

This commit is contained in:
Andrew Head 2019-02-27 16:03:27 -08:00
Родитель f3d735c038
Коммит 65201ec31a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -72,7 +72,7 @@ export class LabCell extends AbstractCell {
}
deepCopy(): LabCell {
return new LabCell(new CodeCellModel({ id: this.id, cell: this.toJSON() }));
return new LabCell(new CodeCellModel({ id: this.id, cell: this.model.toJSON() }));
}
serialize(): any {