Skip to content

Commit

Permalink
Merge branch 'dev' into fix/logformat
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jul 1, 2024
2 parents c5dbe70 + b458875 commit 5d1d17d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/frontend/src/components/cardComponent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,15 @@ export default function CollectionCardComponent({
</div>

<CardDescription className="pb-2 pt-2">
<div className="truncate-doubleline">{data.description}</div>
<div
className={
data?.metadata !== undefined
? "truncate"
: "truncate-doubleline"
}
>
{data.description}
</div>
</CardDescription>
</CardHeader>
</div>
Expand Down

0 comments on commit 5d1d17d

Please sign in to comment.