Skip to content

Commit

Permalink
fix: add line-clamp to llm navigation table
Browse files Browse the repository at this point in the history
  • Loading branch information
alarv committed Dec 19, 2024
1 parent 6eac0ea commit 7751018
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,11 @@ export default function LLMNavigation({ model }: LLMTabsProps) {
<TableBody items={rows}>
{(item: any) => (
<TableRow key={item.key} className={'cursor-pointer'}>
{(columnKey) => <TableCell>{item.name}</TableCell>}
{(columnKey) => (
<TableCell>
<div className="line-clamp-2">{item.name}</div>
</TableCell>
)}
</TableRow>
)}
</TableBody>
Expand Down

0 comments on commit 7751018

Please sign in to comment.