Unverified Commit 26eff330 authored by Ricky's avatar Ricky Committed by GitHub

fix: chat log wont show up (#2007)

parent 9245f0ad
...@@ -46,7 +46,11 @@ const Log: FC<LogProps> = ({ ...@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment