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.
@@ -1094,7 +1094,7 @@ class ElTextEditorComponent {
1094
1094
  data = { editIMG: true, from: 'htmlEditor', index: this.selectedItemIndex, id: this.editorFrom.id };
1095
1095
  const compressedData = compress(JSON.stringify(this.imageEditUrl));
1096
1096
  sessionStorage.setItem('editImageFromTemp', compressedData);
1097
- const compressedData2 = compress(this.editorText);
1097
+ const compressedData2 = compress(JSON.stringify(this.sanitizedContent));
1098
1098
  sessionStorage.setItem('textEditor', compressedData2);
1099
1099
  // alert('go to editor!')
1100
1100
  this.navigateToIMGEditor(data);