sceyt-chat-react-uikit 1.8.1-beta.13 → 1.8.1-beta.14
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.
- package/index.js +2 -1
- package/index.modern.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -20398,7 +20398,8 @@ var handleUploadAttachments = function handleUploadAttachments(attachments, mess
|
|
|
20398
20398
|
'Content-Type': blobLocal.type
|
|
20399
20399
|
}
|
|
20400
20400
|
}));
|
|
20401
|
-
|
|
20401
|
+
var originalImageUrl = URL.createObjectURL(blobLocal);
|
|
20402
|
+
store.dispatch(setUpdateMessageAttachmentAC(uriLocal + "_original_image_url", originalImageUrl));
|
|
20402
20403
|
});
|
|
20403
20404
|
}
|
|
20404
20405
|
}();
|
package/index.modern.js
CHANGED
|
@@ -20397,7 +20397,8 @@ var handleUploadAttachments = function handleUploadAttachments(attachments, mess
|
|
|
20397
20397
|
'Content-Type': blobLocal.type
|
|
20398
20398
|
}
|
|
20399
20399
|
}));
|
|
20400
|
-
|
|
20400
|
+
var originalImageUrl = URL.createObjectURL(blobLocal);
|
|
20401
|
+
store.dispatch(setUpdateMessageAttachmentAC(uriLocal + "_original_image_url", originalImageUrl));
|
|
20401
20402
|
});
|
|
20402
20403
|
}
|
|
20403
20404
|
}();
|