Disable jumbomoji in quotes

This commit is contained in:
Fedor Indutny 2021-09-16 15:45:32 -07:00 committed by GitHub
parent 346590a8fb
commit ce0ccc9b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -295,7 +295,12 @@ export class Quote extends React.Component<Props, State> {
isIncoming ? 'module-quote__primary__text--incoming' : null
)}
>
<MessageBody disableLinks text={quoteText} i18n={i18n} />
<MessageBody
disableLinks
disableJumbomoji
text={quoteText}
i18n={i18n}
/>
</div>
);
}