el-text-editor 0.0.41 → 0.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1090,7 +1090,7 @@ class ElTextEditorComponent {
1090
1090
  data = { editIMG: true, from: 'htmlEditor', index: this.selectedItemIndex, id: this.editorFrom.id };
1091
1091
  const compressedData = compress(JSON.stringify(this.imageEditUrl));
1092
1092
  sessionStorage.setItem('editImageFromTemp', compressedData);
1093
- const compressedData2 = compress(this.editorText);
1093
+ const compressedData2 = compress(JSON.stringify(this.sanitizedContent));
1094
1094
  sessionStorage.setItem('textEditor', compressedData2);
1095
1095
  // alert('go to editor!')
1096
1096
  this.navigateToIMGEditor(data);