mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-29 02:56:11 +03:00
added reply condiditon
This commit is contained in:
parent
c4defec498
commit
1da5cc3421
Binary file not shown.
@ -127,7 +127,7 @@ class EditorScreen extends Component {
|
||||
};
|
||||
|
||||
_handleFormUpdate = (componentID, content) => {
|
||||
const { handleFormChanged } = this.props;
|
||||
const { handleFormChanged, isReply } = this.props;
|
||||
const fields = { ...this.state.fields };
|
||||
|
||||
if (componentID === 'body') {
|
||||
@ -141,15 +141,15 @@ class EditorScreen extends Component {
|
||||
handleFormChanged();
|
||||
|
||||
this._handleIsFormValid();
|
||||
this._saveCurrentDraft();
|
||||
if (isReply) this._saveCurrentDraft();
|
||||
};
|
||||
|
||||
_handleOnTagAdded = (tags) => {
|
||||
const _tags = tags.filter(tag => tag && tag !== ' ');
|
||||
const fields = { ...this.state.fields };
|
||||
|
||||
|
||||
fields.tags = _tags;
|
||||
this.setState({ fields, isRemoveTag: false, });
|
||||
this.setState({ fields, isRemoveTag: false });
|
||||
};
|
||||
|
||||
render() {
|
||||
|
Loading…
Reference in New Issue
Block a user