1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Delete lozenge effect

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-07-02 15:35:52 +02:00
parent e582b1559b
commit 0d8f84c769
4 changed files with 0 additions and 26 deletions

View File

@@ -382,7 +382,6 @@ export default class ReplyThread extends React.Component {
mxEvent={ev}
onHeightChanged={this.props.onHeightChanged}
permalinkCreator={this.props.permalinkCreator}
isRedacted={ev.isRedacted()}
isTwelveHour={SettingsStore.getValue("showTwelveHourTimestamps")}
layout={this.props.layout}
alwaysShowTimestamps={this.props.alwaysShowTimestamps}

View File

@@ -88,7 +88,6 @@ export default class ReplyPreview extends React.Component {
<div className="mx_ReplyPreview_clear" />
<div className="mx_ReplyPreview_tile">
<ReplyTile
isRedacted={this.state.event.isRedacted()}
mxEvent={this.state.event}
permalinkCreator={this.props.permalinkCreator}
/>

View File

@@ -29,7 +29,6 @@ import * as sdk from '../../../index';
interface IProps {
mxEvent: MatrixEvent;
isRedacted?: boolean;
permalinkCreator?: RoomPermalinkCreator;
highlights?: Array<string>;
highlightLink?: string;
@@ -108,7 +107,6 @@ export default class ReplyTile extends React.PureComponent<IProps> {
const classes = classNames({
mx_ReplyTile: true,
mx_ReplyTile_info: isInfoMessage,
mx_ReplyTile_redacted: this.props.isRedacted,
});
let permalink = "#";