mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 15:31:05 +08:00
Fix: If the filename is too long, it overflows the confirmation box for deleting the file. (#15287)
### What problem does this PR solve? Fix: If the filename is too long, it overflows the confirmation box for deleting the file. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@@ -177,7 +177,7 @@ export function ActionCell({
|
||||
<FileIcon name={name} type={type}></FileIcon>
|
||||
</span>
|
||||
<span
|
||||
className={cn('truncate text-xs', {
|
||||
className={cn('truncate text-xs text-wrap', {
|
||||
['cursor-pointer']: isFolder,
|
||||
})}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user