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