mirror of
https://github.com/block/goose.git
synced 2026-07-17 12:56:20 +02:00
fix(ui): extension command text overflow (#3785)
Co-authored-by: Alex Rouse <alex.rouse@block.xyz>
This commit is contained in:
@@ -73,7 +73,7 @@ export default function ExtensionItem({
|
||||
|
||||
return (
|
||||
<Card
|
||||
className="transition-all duration-200 hover:shadow-default hover:cursor-pointer min-h-[120px]"
|
||||
className="transition-all duration-200 hover:shadow-default hover:cursor-pointer min-h-[120px] overflow-hidden"
|
||||
onClick={() => handleToggle(extension)}
|
||||
>
|
||||
<CardHeader>
|
||||
@@ -98,7 +98,9 @@ export default function ExtensionItem({
|
||||
</div>
|
||||
</CardAction>
|
||||
</CardHeader>
|
||||
<CardContent className="px-4 text-sm text-text-muted">{renderSubtitle()}</CardContent>
|
||||
<CardContent className="px-4 text-sm text-text-muted overflow-hidden break-words">
|
||||
{renderSubtitle()}
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user