You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Enlarge emoji in composer (#7602)
This commit is contained in:
@ -31,6 +31,7 @@ export function mdSerialize(model: EditorModel): string {
|
||||
case Type.Newline:
|
||||
return html + "\n";
|
||||
case Type.Plain:
|
||||
case Type.Emoji:
|
||||
case Type.Command:
|
||||
case Type.PillCandidate:
|
||||
case Type.AtRoomPill:
|
||||
@ -164,6 +165,7 @@ export function textSerialize(model: EditorModel): string {
|
||||
case Type.Newline:
|
||||
return text + "\n";
|
||||
case Type.Plain:
|
||||
case Type.Emoji:
|
||||
case Type.Command:
|
||||
case Type.PillCandidate:
|
||||
case Type.AtRoomPill:
|
||||
|
Reference in New Issue
Block a user