Prettified Code!
This commit is contained in:
parent
a6ba61079f
commit
10b0247291
@ -213,7 +213,9 @@ export default class Chat extends Component {
|
|||||||
});
|
});
|
||||||
updatedMessageList.splice(insertAtIndex + 1, 0, convertedMessage);
|
updatedMessageList.splice(insertAtIndex + 1, 0, convertedMessage);
|
||||||
if (updatedMessageList.length > 300) {
|
if (updatedMessageList.length > 300) {
|
||||||
updatedMessageList = updatedMessageList.slice(Math.max(updatedMessageList.length - 300, 0));
|
updatedMessageList = updatedMessageList.slice(
|
||||||
|
Math.max(updatedMessageList.length - 300, 0)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
this.setState({
|
this.setState({
|
||||||
messages: updatedMessageList,
|
messages: updatedMessageList,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user