This commit is contained in:
Maze Winther
2025-07-22 12:43:27 +02:00
parent 40aac17cfb
commit 68492df302
2 changed files with 63 additions and 4 deletions
@@ -103,7 +103,9 @@ function PropertyItem({ label, value }: { label: string; value: string }) {
return (
<div className="flex justify-between">
<Label className="text-xs text-muted-foreground">{label}</Label>
<span className="text-xs text-right">{value}</span>
<span className="text-xs text-right truncate w-40" title={value}>
{value}
</span>
</div>
);
}