feat: improve reports filters and ticket flows

This commit is contained in:
Esdras Renan 2025-11-14 19:41:47 -03:00
parent 9c74e10675
commit 15d11b6b12
29 changed files with 437 additions and 140 deletions

View file

@ -1041,7 +1041,17 @@ export function RichTextEditor({
</ToolbarButton>
</div>
</div>
<div style={{ minHeight }} className="rich-text p-3">
<div
style={{ minHeight }}
className="rich-text p-3"
onMouseDown={(event) => {
if (!editor) return
if (event.target === event.currentTarget) {
event.preventDefault()
editor.commands.focus("end")
}
}}
>
<EditorContent editor={editor} />
</div>
</div>