feat: improve reports filters and ticket flows
This commit is contained in:
parent
9c74e10675
commit
15d11b6b12
29 changed files with 437 additions and 140 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue