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,
|
||||
isReply,
|
||||
isLoading,
|
||||
isUploading,
|
||||
initialFields,
|
||||
onChange,
|
||||
handleOnTextChange,
|
||||
@ -399,7 +400,7 @@ const MarkdownEditorView = ({
|
||||
handleOnUploadPress={() => {
|
||||
galleryRef.current.show();
|
||||
}}
|
||||
isUploading={isLoading}
|
||||
isUploading={isUploading}
|
||||
uploadedImage={uploadedImage}
|
||||
/>
|
||||
|
||||
|
@ -362,7 +362,8 @@ class EditorScreen extends Component {
|
||||
uploadedImage={uploadedImage}
|
||||
initialFields={this._initialFields}
|
||||
isReply={isReply}
|
||||
isLoading={isPostSending || isUploading}
|
||||
isLoading={isPostSending}
|
||||
isUploading={isUploading}
|
||||
isEdit={isEdit}
|
||||
post={post}
|
||||
fields={fields}
|
||||
|
Loading…
Reference in New Issue
Block a user