mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 11:59:01 +08:00
fix: chat log wont show up (#2007)
This commit is contained in:
parent
9245f0adac
commit
26eff330f9
@ -46,7 +46,11 @@ const Log: FC<LogProps> = ({
|
|||||||
`}>
|
`}>
|
||||||
<div
|
<div
|
||||||
className='flex items-center justify-center rounded-md w-full h-full hover:bg-gray-100'
|
className='flex items-center justify-center rounded-md w-full h-full hover:bg-gray-100'
|
||||||
onClick={() => setShowModal(true)}
|
onClick={(e) => {
|
||||||
|
e.stopPropagation()
|
||||||
|
setShowModal(true)
|
||||||
|
}
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<File02 className='w-4 h-4 text-gray-500' />
|
<File02 className='w-4 h-4 text-gray-500' />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user