瀏覽代碼

fix: chat log wont show up (#2007)

tags/0.4.7
Ricky 1 年之前
父節點
當前提交
26eff330f9
No account linked to committer's email address
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5
    1
      web/app/components/app/chat/log/index.tsx

+ 5
- 1
web/app/components/app/chat/log/index.tsx 查看文件

@@ -46,7 +46,11 @@ const Log: FC<LogProps> = ({
`}>
<div
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' />
</div>

Loading…
取消
儲存