try using iframe as form element

This commit is contained in:
Niels Lyngsø
2023-06-29 13:20:33 +02:00
parent a889f5600b
commit d891b1e145

View File

@@ -43,7 +43,7 @@ export class UmbInputTinyMceElement extends FormControlMixin(UmbLitElement) {
#editorRef?: tinymce.Editor | null = null;
protected getFormElement() {
return undefined;
return this._editorElement?.querySelector('iframe') ?? undefined;
}
@query('#editor', true)