el-text-editor 0.0.48 → 0.0.49

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.
@@ -1152,7 +1152,11 @@ class ElTextEditorComponent {
1152
1152
  const compressedData2 = compress(JSON.stringify(this.sanitizedContent));
1153
1153
  sessionStorage.setItem('textEditor', compressedData2);
1154
1154
  // alert('go to editor!')
1155
- this.imageEdit.emit(data);
1155
+ const imageReq = {
1156
+ editImageFromTemp: compressedData,
1157
+ textEditor: compressedData2
1158
+ };
1159
+ this.imageEdit.emit(imageReq);
1156
1160
  this.navigateToIMGEditor(data);
1157
1161
  break;
1158
1162
  case 'create-document':