Merge pull request #1092 from esteemapp/hotfix/editor-crash

Fixed android editor crash
This commit is contained in:
uğur erdal 2019-08-27 10:33:51 +03:00 committed by GitHub
commit e46b7df374
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -199,7 +199,7 @@ export default class MarkdownEditorView extends Component {
};
render() {
const { handleOpenImagePicker, intl, isPreviewActive, isReply } = this.props;
const { handleOpenImagePicker, intl, isPreviewActive, isReply, isLoading } = this.props;
const { text, selection } = this.state;
return (
@ -223,6 +223,7 @@ export default class MarkdownEditorView extends Component {
underlineColorAndroid="transparent"
value={text}
innerRef={this.inputRef}
editable={!isLoading}
/>
) : (
this._renderPreview()

View File

@ -236,6 +236,7 @@ class EditorScreen extends Component {
uploadedImage={uploadedImage}
initialFields={this._initialFields}
isReply={isReply}
isLoading={isPostSending || isUploading}
/>
</PostForm>
</View>