mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
Relation type
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
63ad95246a
commit
22b029d116
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ import SenderProfile from "../messages/SenderProfile";
|
|||
import TextualBody from "../messages/TextualBody";
|
||||
import MImageReplyBody from "../messages/MImageReplyBody";
|
||||
import * as sdk from '../../../index';
|
||||
import { EventType } from 'matrix-js-sdk/src/@types/event';
|
||||
import { EventType, RelationType } from 'matrix-js-sdk/src/@types/event';
|
||||
|
||||
interface IProps {
|
||||
mxEvent: MatrixEvent;
|
||||
|
@ -90,7 +90,7 @@ export default class ReplyTile extends React.PureComponent<IProps> {
|
|||
// source tile when there's no regular tile for an event and also for
|
||||
// replace relations (which otherwise would display as a confusing
|
||||
// duplicate of the thing they are replacing).
|
||||
const useSource = !tileHandler || this.props.mxEvent.isRelation("m.replace");
|
||||
const useSource = !tileHandler || this.props.mxEvent.isRelation(RelationType.Replace);
|
||||
if (useSource && SettingsStore.getValue("showHiddenEventsInTimeline")) {
|
||||
tileHandler = "messages.ViewSourceEvent";
|
||||
// Reuse info message avatar and sender profile styling
|
||||
|
|
Loading…
Reference in a new issue