Enlarge emoji in composer (#7602)

This commit is contained in:
Robin 2022-01-24 07:53:05 -05:00 committed by GitHub
parent b5d11336f7
commit 6806c2cdca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 128 additions and 42 deletions

View file

@ -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: