mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 19:31:54 +03:00
unblocked editor while images upload in background
This commit is contained in:
parent
39032ba74b
commit
032e6f74a8
@ -52,6 +52,7 @@ const MarkdownEditorView = ({
|
|||||||
isPreviewActive,
|
isPreviewActive,
|
||||||
isReply,
|
isReply,
|
||||||
isLoading,
|
isLoading,
|
||||||
|
isUploading,
|
||||||
initialFields,
|
initialFields,
|
||||||
onChange,
|
onChange,
|
||||||
handleOnTextChange,
|
handleOnTextChange,
|
||||||
@ -399,7 +400,7 @@ const MarkdownEditorView = ({
|
|||||||
handleOnUploadPress={() => {
|
handleOnUploadPress={() => {
|
||||||
galleryRef.current.show();
|
galleryRef.current.show();
|
||||||
}}
|
}}
|
||||||
isUploading={isLoading}
|
isUploading={isUploading}
|
||||||
uploadedImage={uploadedImage}
|
uploadedImage={uploadedImage}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
@ -362,7 +362,8 @@ class EditorScreen extends Component {
|
|||||||
uploadedImage={uploadedImage}
|
uploadedImage={uploadedImage}
|
||||||
initialFields={this._initialFields}
|
initialFields={this._initialFields}
|
||||||
isReply={isReply}
|
isReply={isReply}
|
||||||
isLoading={isPostSending || isUploading}
|
isLoading={isPostSending}
|
||||||
|
isUploading={isUploading}
|
||||||
isEdit={isEdit}
|
isEdit={isEdit}
|
||||||
post={post}
|
post={post}
|
||||||
fields={fields}
|
fields={fields}
|
||||||
|
Loading…
Reference in New Issue
Block a user