mirror of https://github.com/vector-im/riot-web
fix Composer focus after twiddling with Replies
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
f1a3592eff
commit
0d6fc9bd3a
|
@ -17,6 +17,7 @@ import React from 'react';
|
||||||
import sdk from '../../../index';
|
import sdk from '../../../index';
|
||||||
import {_t} from '../../../languageHandler';
|
import {_t} from '../../../languageHandler';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
import dis from '../../../dispatcher';
|
||||||
import MatrixClientPeg from '../../../MatrixClientPeg';
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
import {wantsDateSeparator} from '../../../DateUtils';
|
import {wantsDateSeparator} from '../../../DateUtils';
|
||||||
import {MatrixEvent} from 'matrix-js-sdk';
|
import {MatrixEvent} from 'matrix-js-sdk';
|
||||||
|
@ -131,6 +132,8 @@ export default class Reply extends React.Component {
|
||||||
loadedEv: null,
|
loadedEv: null,
|
||||||
events,
|
events,
|
||||||
}, this.loadNextEvent);
|
}, this.loadNextEvent);
|
||||||
|
|
||||||
|
dis.dispatch({action: 'focus_composer'});
|
||||||
}
|
}
|
||||||
|
|
||||||
static getInReplyTo(ev) {
|
static getInReplyTo(ev) {
|
||||||
|
|
Loading…
Reference in New Issue