From 4c09cc1fc3bf316d82b1e5819616342eea963e1d Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Sat, 15 Jan 2022 16:46:38 +0530 Subject: [PATCH] Auto-focus TinyMCE editor area on load. --- frontend/src/components/Editor.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Editor.vue b/frontend/src/components/Editor.vue index 11a885a6f..f5f7efdb6 100644 --- a/frontend/src/components/Editor.vue +++ b/frontend/src/components/Editor.vue @@ -203,6 +203,7 @@ export default { setup: (editor) => { editor.on('init', () => { + editor.focus(); this.onEditorDialogOpen(editor); });