Copy css for edition

This commit is contained in:
Florian Duros 2022-10-20 10:53:57 +02:00
parent e9b285c5e0
commit 5e6d0f6404
No known key found for this signature in database
GPG key ID: 9700AA5870258A0B
7 changed files with 62 additions and 6 deletions

View file

@ -39,7 +39,7 @@ const Content = forwardRef<HTMLElement, ContentProps>(
export function SendWysiwygComposer(props: SendWysiwygComposerProps) {
return (
<WysiwygComposer {...props}>{ (ref, wysiwyg) => (
<WysiwygComposer className="mx_SendWysiwygComposer" {...props}>{ (ref, wysiwyg) => (
<Content disabled={props.disabled} ref={ref} formattingFunctions={wysiwyg} />
) }
</WysiwygComposer>);