fix: disable autoFocus on the Editor component in ActionBox

This commit is contained in:
Abhinav Raut
2025-06-08 16:14:32 +05:30
parent e7b8e5c4bb
commit 73e2950174

View File

@@ -66,6 +66,7 @@
v-if="action.type && conversationActions[action.type]?.type === 'richtext'"
>
<Editor
:autoFocus="false"
v-model:htmlContent="action.value[0]"
@update:htmlContent="(value) => handleEditorChange(value, index)"
:placeholder="t('editor.newLine') + t('editor.send') + t('editor.cmdK')"