dont show remove button for original event in edit history

This commit is contained in:
Bruno Windels 2019-07-18 14:09:29 +02:00
parent 76a60c84ac
commit aca41fe80a
2 changed files with 10 additions and 2 deletions

View file

@ -94,7 +94,7 @@ export default class EditHistoryMessage extends React.PureComponent {
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
// hide the button when already redacted
let redactButton;
if (!this.props.mxEvent.isRedacted()) {
if (!this.props.mxEvent.isRedacted() && !this.props.isBaseEvent) {
redactButton = (
<AccessibleButton onClick={this._onRedactClick} disabled={!this.state.canRedact}>
{_t("Remove")}