mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Enums
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
b1fb089816
commit
c44de3bea8
@ -128,15 +128,15 @@ export default class ReplyTile extends React.PureComponent<IProps> {
|
||||
}
|
||||
|
||||
const msgtypeOverrides = {
|
||||
"m.image": MImageReplyBody,
|
||||
[MsgType.Image]: MImageReplyBody,
|
||||
// We don't want a download link for files, just the file name is enough.
|
||||
"m.file": TextualBody,
|
||||
[MsgType.File]: TextualBody,
|
||||
"m.sticker": TextualBody,
|
||||
"m.audio": TextualBody,
|
||||
"m.video": TextualBody,
|
||||
[MsgType.Audio]: TextualBody,
|
||||
[MsgType.Video]: TextualBody,
|
||||
};
|
||||
const evOverrides = {
|
||||
"m.sticker": TextualBody,
|
||||
[EventType.Sticker]: TextualBody,
|
||||
};
|
||||
|
||||
return (
|
||||
|
Loading…
Reference in New Issue
Block a user