dont show remove button for original event in edit history
This commit is contained in:
parent
76a60c84ac
commit
aca41fe80a
2 changed files with 10 additions and 2 deletions
|
@ -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")}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue