### What problem does this PR solve? Fix: Use DOMPurify to filter out dangerous HTML #7668 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)tags/v0.19.0
| const { setDocumentIds, data: fileThumbnails } = | const { setDocumentIds, data: fileThumbnails } = | ||||
| useFetchDocumentThumbnailsByIds(); | useFetchDocumentThumbnailsByIds(); | ||||
| const contentWithCursor = useMemo(() => { | const contentWithCursor = useMemo(() => { | ||||
| let text = content; | |||||
| let text = DOMPurify.sanitize(content); | |||||
| if (text === '') { | if (text === '') { | ||||
| text = t('chat.searching'); | text = t('chat.searching'); | ||||
| } | } |