You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
replace concat on comment from review
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@ -132,7 +132,7 @@ export default class ReplyThread extends React.Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onQuoteClick() {
|
onQuoteClick() {
|
||||||
const events = [this.state.loadedEv].concat(this.state.events);
|
const events = [this.state.loadedEv, ...this.state.events];
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
loadedEv: null,
|
loadedEv: null,
|
||||||
|
Reference in New Issue
Block a user