소스 검색

deep copy value in set

Mehmet Bektas 5 년 전
부모
커밋
464e31c97d
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      packages/outputarea/src/model.ts

+ 1 - 0
packages/outputarea/src/model.ts

@@ -228,6 +228,7 @@ export class OutputAreaModel implements IOutputAreaModel {
    * Set the value at the specified index.
    */
   set(index: number, value: nbformat.IOutput): void {
+    value = JSONExt.deepCopy(value);
     // Normalize stream data.
     Private.normalize(value);
     let item = this._createItem({ value, trusted: this._trusted });