调整博客、资源表格,允许任意位置换行

This commit is contained in:
2025-06-10 15:37:56 +08:00
parent 0461c0ce70
commit 7b7f940a60
2 changed files with 7 additions and 7 deletions

View File

@@ -51,9 +51,9 @@ export default function BlogTable({ blogs, error, onRefresh }: BlogTableProps) {
</Tooltip>
</TooltipProvider>
</TableCell>
<TableCell className="whitespace-normal break-words">{blog.title}</TableCell>
<TableCell className="whitespace-normal break-words">{blog.description}</TableCell>
<TableCell className="whitespace-normal break-words">{blog.contentUrl}</TableCell>
<TableCell className="whitespace-normal break-all">{blog.title}</TableCell>
<TableCell className="whitespace-normal break-all">{blog.description}</TableCell>
<TableCell className="whitespace-normal break-all">{blog.contentUrl}</TableCell>
<TableCell className="text-right">
<BlogEdit id={blog.id} onRefresh={() => onRefresh()}>
<Button variant={'outline'} size={'sm'}></Button>