1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

Merge pull request #3261 from matrix-org/bwindels/edithistorywarning

Get rid of warning of required prop
This commit is contained in:
Bruno Windels
2019-07-31 11:57:47 +00:00
committed by GitHub

View File

@@ -36,7 +36,7 @@ export default class EditHistoryMessage extends React.PureComponent {
static propTypes = { static propTypes = {
// the message event being edited // the message event being edited
mxEvent: PropTypes.instanceOf(MatrixEvent).isRequired, mxEvent: PropTypes.instanceOf(MatrixEvent).isRequired,
previousEdit: PropTypes.instanceOf(MatrixEvent).isRequired, previousEdit: PropTypes.instanceOf(MatrixEvent),
isBaseEvent: PropTypes.bool, isBaseEvent: PropTypes.bool,
}; };