cell copy: make sure that cell id is not copied when copying cell

mishaschwartz 5 years ago
parent b070efc32c
commit a5d7528994

@ -1648,6 +1648,9 @@ define([
if (cell_json.metadata.deletable !== undefined) {
delete cell_json.metadata.deletable;
}
if (cell_json.id !== undefined) {
delete cell_json.id;
}
this.clipboard.push(cell_json);
}
this.enable_paste();

Loading…
Cancel
Save